基于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); .then(function(res) { var rs=res.data; console.log(rs.data); }) .catch(function(err) { console.log(err); }); |
浙公网安备 33010602011771号