我正在使用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。为什么呢?