我正在尝试使用 jQuery 的 ajax 函数进行服务调用。我已经在 IE 和 Chrome 的本地环境中对其进行了测试,并且运行良好。但是,在将我们的站点部署到生产环境后,我只能在 Chrome 中调用服务调用。单步执行检查器中的代码,我可以看到它进入了 IE 中的 ajax 函数,但从未发出请求。我使用过 fiddler,并且在使用 Chrome 而不是 IE 时可以看到通话。
var customers;
function AutoComplete(TheId) {
if (!customers) {
$.ajax({
type: "GET",
url: "api/customerapi",
dataType: "json",
async: false,
success: function (data) {
customers = data;
}
});
}
.... further code ....
}
任何想法这里可能出了什么问题?