0

我正在处理 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);
4

1 回答 1

1

以下在 Firefox 22.0(和 23.0 也一样)上运行良好:

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;
}

var xhr = createXMLHTTPObject();
xhr.open("PUT", "/echo/html/", true);
xhr.onreadystatechange = function()
{
    if (xhr.readyState == 4)
        alert("Request completed, with the following status code: " + xhr.status);
}
xhr.send("");

这是一个 jsFiddle:http: //jsfiddle.net/qXQtD/

为了更好地了解您的情况,请回答以下问题:

  1. 您要发送的数据是什么?
  2. 您的完整响应标头是什么(尤其是“Access-Control-Allow-Origin”标头)?
于 2013-08-14T13:57:08.007 回答