CORS 现在在我的 Chrome、Firefox 应用程序中完美运行。使用这个插件https://github.com/MoonScript/jQuery-ajaxTransport-XDomainRequest
我也能够在 IE 中获得 CORS 请求,如下所示:
$.ajax({
url: url,
type:"POST",
dataType: "json"
});
但是,当我尝试在 POST 请求中发送数据时,例如:
$.ajax({
url: url,
type:"POST",
dataType: "json",
data: {test: 5}
});
这没用。有没有人设法让 IE 发出包含 POST 数据的 CORS 请求?
谢谢!