在IE 11中,我使用xml作为我的数据发送并将数据作为xml返回,当我第一次加载我的页面时,但是当我根据任何事件调用ajax调用时它会显示错误为:< / p>
{readyState: 4, responseText: "", status: 500, statusText: "Internal Se..."}
Mozilla Firefox的相同代码,它运行良好&amp;按照我想要的方式返回正确的结果。
为此我的代码是:
$.ajax({
async: true,
cache: false,
url : url,
type : 'POST',
precessData : true,
contentType : "application/xml",
data : data,
dataType : "text",
error: function (err) {
console.log(err);
}
}).done(function(res){
console.log(res);
});
答案 0 :(得分:0)
“内部服务器错误”表示您从中获取数据的内容存在问题。
问题不在您的客户端代码中。