Jump to content
  • 0

Загрузка файла и iOS (сафари, хром). Почему не грузит?


sc_creator
 Share

Question

Здравствуйте. Есть страница: https://hochu.ua/biokon-spring/ и есть в ней форма загрузки фото и регистрации. Скрипт, который это все делает тут: https://hochu.ua/js/tmpspecproject/biokonspring/main.js  а именно фрагменты кода:

Загрузка фото:

		$('#avatar').fileupload({
			dataType: 'json',
			done: function (e, data) {
				console.log(data);
				$('.b70__e2').prop('src', data.result.file);
				$('#loadedavatar').val(data.result.file);
				$('#bluebuttonreg').prop("disabled", false);
			}
		});

Регистрация:

	$(document).on('submit', '#regform', function (e) {
		e.preventDefault();
		$.post($(this).prop('action'), $(this).serialize(), function (data) {
			if (parseInt(data)==1) {
				$('#reg-popup').fadeIn();
				$('#regform')[0].reset();
				$('.b70__e2').prop('src', '/i/tmpspecproject/biokonspring/blank.png');
				$('#bluebuttonreg').prop("disabled", true);
			}
		});
	});

Проблема заключается в том, что на iPhone 6 фото не грузится из медиатеки, хотя с камеры грузится и со всех других устройств и браузеров всё грузится. Подскажите плиз, в чем может быть проблема и как вообще можно посмотреть сетевой ответ на айфоне или же отладить скрипт? Максимум что мне удалось - это добавить обработчик событий на fail (в первом куске кода) на dev-сервере и на айфоне мне alert показал ошибку "Error parsing JSON, unexpected EOF". 

P.S. Не буду возражать, если примете участие в конкурсе )))

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy