jquery允许跨越获取cookie

 $.ajax({
   url:url,
   type: "get",
   //这里是重点
   xhrFields: { //允许添加cookie
     withCredentials: true
   },
   dataType: "json",
   data:data,
   success:function(res){},
   error:function(err){
     console.log(err)
   }
})

 

posted on 2021-04-16 16:52  前端LHR  阅读(115)  评论(0编辑  收藏  举报

导航