如何報告XHR data
使用jQuery.ajax()ifModified:true
?不幸的是,重複的ajax請求報告data undefined
。如何在使用jQuery.ajax()ifModified時報告XHR數據:true?關於重複ajax請求它報告數據undefined
$.ajax({
type:"GET",
url:'/api', // {"content"="Hello!"}
dataType:'json',
cache:true,
ifModified:true,
success:function(data,textStatus,jqXHR){
console.debug(textStatus); //repeated request returns `notmodified`
console.debug(data); // Why on repeated request returns `undefined`?
}
});
看到http://stackoverflow.com/questions/5118017/how-to-fix-browser-cache-and-notmodified-respond-for-json-jquery-ajaxifmodifi/12653101# 12653101 – MarkB 2012-10-01 13:49:29