跨源预检请求失败(铬)



我正在尝试发送内容类型为 json 的跨域 POST 请求。我将服务器标头配置为接受源、标头等。如果我发出 GET 请求,它会成功,但是,如果我发出 POST 请求,预检将失败。

以下是网络通信的截图:http://d.pr/i/JsM

代码:

jq.ajax({
            url: url,
            type: "POST",
            data: dataStr,
            dataType: "json",
            crossDomain: true,
            //processData: false,
            contentType: "application/json; charset=utf-8",
            xhrFields: {
                withCredentials: true
            },...

我不知所措的原因是因为GET请求成功 它们之间的唯一区别是GET请求在请求中不包含访问控制请求标头等标头。

更新:如果我将数据类型更改为"文本/纯文本",它可以工作。管他呢?

看到这个: http://www.html5rocks.com/en/tutorials/cors/。看看"来自JQuery的CORS"部分,在代码注释中它说:

// The 'contentType' property sets the 'Content-Type' header.
// The JQuery default for this property is
// 'application/x-www-form-urlencoded; charset=UTF-8', which does not trigger
// a preflight. If you set this value to anything other than
// application/x-www-form-urlencoded, multipart/form-data, or text/plain,
// you will trigger a preflight request.
contentType: 'text/plain'

相关内容

  • 没有找到相关文章

最新更新