当前位置:主页 > 网页前端 > vue >

基于axios 解决跨域cookie丢失的问题

时间:2021-08-02 07:29:29 | 栏目:vue | 点击:

设置 axios.defaults.withCredentials = true 即可

示例代码:

 axios.defaults.withCredentials = true;
 var param = new URLSearchParams();
 param.append("vCode",vcode);
 axios.post('http://localhost',param)
  .then(function(res) {
   var rs=res.data;
   console.log(rs.data);
  })
  .catch(function(err) {
   console.log(err);
  });

您可能感兴趣的文章:

相关文章