我正在努力让这个脚本工作。它基本上是一个简单的 ajax 调用,用于从返回 JSON 代码的 php 中检索数据。
function refreshWindows(){
if(AjaxPull && AjaxPull.readystate != 4){
AjaxPull.abort();
}
AjaxPull = $.ajax({
type: 'POST',
url: $path,
data: {
ajax: true,
mode: 'update',
to: Math.round(currentDate.getTime() / 1000),
from: Math.round(previousDate.getTime() / 1000)
},
dataType: "json",
success: function (data) {
alert(data); //that's for debug
$replies = data.Updates;
$.each($replies ,function(group,value) {
if (value!=''){
$("#group"+group+" .content").append(value);
$("#group"+group+" .content").stop().animate({ scrollTop: $("#group"+group+" .content")[0].scrollHeight }, 800);
if (!$("#group"+group+" .Window").is(':visible')) {
$("#group"+group+" .BottomBox").fadeTo('fast', 0.5).fadeTo('fast', 1.0);
}
}
});
previousDate = currentDate;
currentDate = new Date();
timeController.push( setTimeout(function(){refreshChatWindows();}, 500) );
}
});
}
我在 Internet Explorer 中遇到的错误是:
SCRIPT5007:无法获取属性“更新”的值:对象为空或未定义
在 Firefox 和 Google Chrome 中一切正常。
最初我的代码是使用.get编写的,但有人建议切换到.ajax - 好吧,它没有帮助。我尝试使用.done(function(data){,但它也没有工作。我还尝试在与data属性相反的 URL 中发送所有数据,它在 FF 中运行良好,但 IE 仍然弹出相同的错误。最后,我尝试向 PHP 添加不同的标头,例如,header('Content-Type: application/json');但它没有改变任何东西。我用完了在stackoverflow上可以解决的想法/可能的解决方案,因此将不胜感激。
在 IE 中,我转到开发人员工具的网络选项卡并尝试查看是否一切正常 - 是的,请求正在正确发送所有数据,并且我收到的响应是正确的 JSON,就像在 Firefox 中一样:
{"Updates":{"1":"","2":"","3":"","5":"","6":"","7":"","8":""},"time":{"from":"1367489761","to":"1367489761"}}
这让我很困惑,因为我认为未定义的错误可能只是因为无论出于何种原因没有在 IE 中发回某些东西,但很明显:事实并非如此。我拿回了我的 JSON。只有 IE 出于某种未知原因仍然认为数据未定义。