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

设置 axios.defaults.withCredentials = true 即可

示例代码:

前端精品教程:百度网盘下载

?
1
2
3
4
5
6
7
8
9
10
11
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);
  });

猜你喜欢

转载自www.cnblogs.com/xiaoyingainiaa/p/9810629.html
今日推荐