解決vue項(xiàng)目axios每次請(qǐng)求session不一致的問(wèn)題
1、vue開(kāi)發(fā)后臺(tái)管理項(xiàng)目,登錄后,請(qǐng)求數(shù)據(jù)每次session都不一致,后臺(tái)返回未登錄,處理方法打開(kāi)main.js設(shè)置:
// The Vue build version to load with the `import` command// (runtime-only or standalone) has been set in webpack.base.conf with an alias.import Vue from ’vue’import App from ’./App’import router from ’./router’require(’es6-promise’).polyfill()import MintUI from ’mint-ui’import ’mint-ui/lib/style.css’import ElementUI from ’element-ui’;import ’element-ui/lib/theme-chalk/index.css’;import store from ’./store’import axios from ’axios’ // 1、在這里引入axios axios.interceptors.response.use(function(res) { var res = res.data; if(res.status === 403 ) { router.push(’/’) return res; } return res;}, function(error) { return Promise.reject(error);});axios.defaults.withCredentials = true; //意思是攜帶cookie信息,保持session的一致性Vue.prototype.$axios = axiosVue.prototype.stringify = require(’qs’).stringify; Vue.use(MintUI)Vue.use(ElementUI);Vue.config.productionTip = false /* eslint-disable no-new */new Vue({ el: ’#app’, router, store, components: { App }, template: ’<App/>’})
withCredentials為false意思是不攜帶cookie信息,為保持session的一致性需設(shè)置為true;
2、為解決跨域,需要代理
3、數(shù)據(jù)請(qǐng)求
補(bǔ)充知識(shí):解決跨域造成Vue-element每次請(qǐng)求sessionID不同問(wèn)題
vue-element作為前端開(kāi)發(fā)框架, 前后端分離項(xiàng)目ajax跨域, 每次http請(qǐng)求后sessionId均會(huì)發(fā)生變化,導(dǎo)致獲取session失敗,
只需要在文件vue-element-admin-master-1srcutilsrequest.js中添加如下代碼即可:
withCredentials: true,
crossDomain: true
整個(gè)axios請(qǐng)求為:
const service = axios.create({ baseURL: process.env.BASE_API, // api的base_url timeout: 5000, // request timeout withCredentials: true, crossDomain: true})
以上這篇解決vue項(xiàng)目axios每次請(qǐng)求session不一致的問(wèn)題就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持好吧啦網(wǎng)。
相關(guān)文章:
1. msxml3.dll 錯(cuò)誤 800c0019 系統(tǒng)錯(cuò)誤:-2146697191解決方法2. WMLScript的語(yǔ)法基礎(chǔ)3. ASP中解決“對(duì)象關(guān)閉時(shí),不允許操作。”的詭異問(wèn)題……4. 解決ASP中http狀態(tài)跳轉(zhuǎn)返回錯(cuò)誤頁(yè)的問(wèn)題5. html小技巧之td,div標(biāo)簽里內(nèi)容不換行6. xml中的空格之完全解說(shuō)7. XML入門的常見(jiàn)問(wèn)題(四)8. 無(wú)線標(biāo)記語(yǔ)言(WML)基礎(chǔ)之WMLScript 基礎(chǔ)第1/2頁(yè)9. ASP中if語(yǔ)句、select 、while循環(huán)的使用方法10. ASP動(dòng)態(tài)網(wǎng)頁(yè)制作技術(shù)經(jīng)驗(yàn)分享
