Проблема: не работает аякс запрос на IOS 5. Читаем jQuery
«Pages fetched with POST are never cached, so the cache and ifModified options injQuery.ajaxSetup() have no effect on these requests.»
Мы таки ему не верим и меняем код
«Pages fetched with POST are never cached, so the cache and ifModified options injQuery.ajaxSetup() have no effect on these requests.»
Мы таки ему не верим и меняем код
$.post("@Url.Action(IfxMVC.News.ActionNames.GetLastNews)",processNewsResult);
На вот этот код
$.ajax({ type: 'POST', url: "@Url.Action(ActionNames.GetLastNews)", cache: false }).done(processNewsResult);
PS вот такая неприятная особенность, доверяй но проверяй
ссылка на оригинал статьи http://habrahabr.ru/post/155463/
Добавить комментарий