跨域请求时携带cookie
程序员文章站
2022-06-16 10:09:40
...
$.ajax({
type : "POST",
url : url,
cache: false,
async : false,
data : jsonData,
dataType : 'json',
timeout : 10000,
crossDomain:true, //设置跨域为true
xhrFields: {
withCredentials: true //默认情况下,标准的跨域请求是不会发送cookie的
},
success : function(obj) {
......
},
error : function(data) {
......
}
});