时间: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); });