您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關axios中cookie跨域及相關配置的示例分析,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
1、 帶cookie請求 - 畫個重點
axios默認是發送請求的時候不會帶上cookie的,需要通過設置withCredentials: true
來解決。 這個時候需要注意需要后端配合設置:
header信息 Access-Control-Allow-Credentials:true
Access-Control-Allow-Origin不可以為 '*',因為 '*' 會和 Access-Control-Allow-Credentials:true 沖突,需配置指定的地址
如果后端設置 Access-Control-Allow-Origin: '*'
, 會有如下報錯信息
Failed to load http://localhost:8090/category/lists: The value of the 'Access-Control-Allow-Origin' header in the response must not be the wildcard '*' when the request's credentials mode is 'include'. Origin 'http://localhost:8081' is therefore not allowed access. The credentials mode of requests initiated by the XMLHttpRequest is controlled by the withCredentials attribute.
后端配置缺一不可,否則會出錯,貼上我的后端示例:
const express = require('express') const app = express() const cors = require('cors') // 此處我的項目中使用express框架,跨域使用了cors npm插件 app.use(cors{ credentials: true, origin: 'http://localhost:8081', // web前端服務器地址 // origin: '*' // 這樣會出錯 })
成功之后,可在請求中看到
2、我的前端項目代碼的axios配置
axios統一配置,會很好的提升效率,避免bug,以及定位出bug所在(方便捕獲到error信息)
建立一個單獨的fetch.js封裝axios請求并作為方法暴露出來
import axios from 'axios' // 創建axios實例 const service = axios.create({ baseURL: process.env.BASE_API, // node環境的不同,對應不同的baseURL timeout: 5000, // 請求的超時時間 //設置默認請求頭,使post請求發送的是formdata格式數據// axios的header默認的Content-Type好像是'application/json;charset=UTF-8',我的項目都是用json格式傳輸,如果需要更改的話,可以用這種方式修改 // headers: { // "Content-Type": "application/x-www-form-urlencoded" // }, withCredentials: true // 允許攜帶cookie }) // 發送請求前處理request的數據 axios.defaults.transformRequest = [function (data) { let newData = '' for (let k in data) { newData += encodeURIComponent(k) + '=' + encodeURIComponent(data[k]) + '&' } return newData }] // request攔截器 service.interceptors.request.use( config => { // 發送請求之前,要做的業務 return config }, error => { // 錯誤處理代碼 return Promise.reject(error) } ) // response攔截器 service.interceptors.response.use( response => { // 數據響應之后,要做的業務 return response }, error => { return Promise.reject(error) } ) export default service
如下所示,如果需要調用ajax請求
import fetch from '@/utils/fetch' fetch({ method: 'get', url: '/users/list' }) .then(res => { cosole.log(res) })
關于“axios中cookie跨域及相關配置的示例分析”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。