// 一、vue框架 卸载main.js里面(全局携带)
import axios from 'axios'
axios.defaults.withCredentials=true //让ajax携带cookie(自动携带本地所有cookie)
// 二、vue框架 单独携带
axios({
headers:{},
withCredentials=true
})
// 三、fetch请求
credentials: 'include',
// 一、vue框架 卸载main.js里面(全局携带)
import axios from 'axios'
axios.defaults.withCredentials=true //让ajax携带cookie(自动携带本地所有cookie)
// 二、vue框架 单独携带
axios({
headers:{},
withCredentials=true
})
// 三、fetch请求
credentials: 'include',
本文标题:网络请求时携带cookie
本文链接:https://www.haomeiwen.com/subject/qyrmirtx.html
网友评论