欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

跨域请求时携带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) {
           ......
       }
   });