CORS请求在Firefox中失败

时间:2014-02-28 20:54:28

标签: jquery firefox cors

我的CORS请求在Firefox中失败,但它没有记录错误。事实上,我甚至没有看到任何NET面板流量。 Chrome和IE(8-11)中的请求很好。

在没有赠送URL的情况下,是否有人能够发现为什么Firefox不会处理此请求?

$.ajax({
    xhrFields: {
        withCredentials: true
    },
    crossDomain: true,
    url: url,
    async: false,
    success: function() {
        console.log('Success!');
    },
    error: function() {
        console.log('Something went wrong.');
    }
});

0 个答案:

没有答案