我正在处理 javascript 跨域 ajax 请求。我的代码在 chrome 和其他设备上运行良好,例如 android 浏览器和使用 phonegap 的 android 本机应用程序。但我遇到了 Firefox 的问题..
Firefox 不支持我的 PUT 和 DELETE 请求。Firefox 是否有任何解决方案可以向我的服务器发出放置和删除请求。
Firefox 确实支持我的帖子并获得请求。两者都要求工作正常。
这是我的工作代码。
var XMLHttpFactories = [
function () {
return new XMLHttpRequest()
},
function () {
return new ActiveXObject("Msxml2.XMLHTTP")
},
function () {
return new ActiveXObject("Msxml3.XMLHTTP")
},
function () {
return new ActiveXObject("Microsoft.XMLHTTP")
}
];
function createXMLHTTPObject() {
var xmlhttp = false;
for (var i=0;i<XMLHttpFactories.length;i++) {
try {
xmlhttp = XMLHttpFactories[i]();
}
catch (e) {
continue;
}
break;
}
return xmlhttp;
}
对于发送 Put 请求..
var xhr = createXMLHTTPObject();
xhr.open("PUT", url,true);
xhr.onreadystatechange=function()
{
if (xhr.readyState==4)
{
if(xhr.status==200){
request.success(xhr.responseText);
}else if(xhr.status!=200){
request.error(xhr.responseText)
}
}
}
xhr.send(body);