AJAX(JQuery):没有发送Cookie

时间:2017-06-29 08:33:44

标签: jquery ajax cookies

我正在使用AJAX和jQuery发送GET请求:

$(document).ready(function() {
    $.ajax({
        type: "GET",
        cache: false,
        url: "http://third-party-website.com",
        dataType: "text",
        xhrFields: {
            withCredentials: true
        },
        success: function(data) {
            console.log("end");
        }
    });
});       

并且没有发送cookie。为什么呢?

0 个答案:

没有答案