vue 使用 axios 设置请求带上cookie
有个请求需要添加cookie在使用时设置:import Axios from 'axios'// 全局设置 axios 发送请求带上cookieAxios.defaults.withCredentials = true//方法中使用axios请求就好let api1 = '你的访问地址'await Axios.get(api1).then((res) => {if (res.data.cod
·
有个请求需要添加cookie
在使用时设置:
import Axios from 'axios'
// 全局设置 axios 发送请求带上cookie
Axios.defaults.withCredentials = true
//方法中使用axios请求就好
let api1 = '你的访问地址'
await Axios.get(api1)
.then((res) => {
if (res.data.code === 'A00000') console.log(res. '结果值')
})
.catch((error) => {
console.log(error)
})
也可直接全局设置:
在 main.js 入口文件配置
import axios from 'axios'
// 全局设置 axios 发送请求带上cookie
axios.defaults.withCredentials = true
更多推荐
已为社区贡献3条内容
所有评论(0)