美文网首页
vue网络请求时携带cookie

vue网络请求时携带cookie

作者: 南南小生 | 来源:发表于2018-10-31 15:42 被阅读48次

    使用axios请求时默认并不会带上web浏览器的cookie,需要进行以下的设置。
    在main.js中引入axios:

    // 网络请求框架
    import axios from 'axios'
    axios.defaults.withCredentials=true //让ajax携带cookie
    Vue.prototype.$http = axios     // 这样设置就可以在组件内用 this.$http 使用axios了
    axios.defaults.baseURL = '' //初始化基础地址
    

    相关文章

      网友评论

          本文标题:vue网络请求时携带cookie

          本文链接:https://www.haomeiwen.com/subject/gaabaftx.html