我使用jQuery编写了一个CORS请求,它简单如下:
var BJS = {Services: {} };
BJS.Services.GetDatasources = function (data, success, fail) {
if (data == null) data = {};
var u = data["user"],
p = data["pass"],
url = data["url"],
ext = data["ext"],
secure = data["secure"] ? "https://" : "http://",
up = BJS.Base64.encode(u + ":" + p),
d = data["data"] ? data["data"] : "";
$.ajax({
url: secure + url + ext,
data: d,
headers: {
Authorization: "Basic " + up
},
success: success,
error: fail
});
};
此请求在Chrome中完美运行。在IE中,它返回错误:
Error: Access is denied.
at send (...)
at ajax (...)
at GetDatasources (...)
at eval code (eval code:1:1)
at Global code (Unknown script code:5:1)
我指的是我认为的$ .ajax请求。
我应该采用不同的方式来处理这个ajax请求吗?是否需要不同的变量?
我希望jQuery的$ .ajax调用能够从浏览器依赖项中抽象出来,以便在浏览器之间实现更加统一的功能,但唉,这不是这种情况。
编辑:为了安全起见,我删除了代码,但所有变量DID实际上都有默认值:示例:
u = data["user"] || "admin";
但我想从外界删除哈希,网址等。
编辑没有人发布任何答案,但我想展示一下我为好奇的人做过的解决方法,但根本问题仍未得到解答。
$.support.cors = true
if ($.browser.msie && parseInt($.browser.version, 10) >= 8 && XDomainRequest) {
//IE
//using a webservice will remove the cors, and you can just forward the response to the client.
//it takes up some processing time, but this is the workaround i accomplish.
$.ajax({url: "webservice.svc"}); //this can be a .php file, or anything really that runs ont he server.
}else{
//chrome/ff
//call page as normal.
$.ajax({url:"resource_file"});
}