自從入了 Vue 之後,就一直在用 axios 這個函式庫來做一些非同步請求。以下這篇文章主要為大家介紹了關於axios中cookie跨域及相關配置的相關資料,文中透過範例程式碼介紹的非常詳細,需要的朋友可以參考借鑒,下面一起看看吧。
前言
最近在跨領域、cookie 以及表單上傳這幾個方面遇到了點小問題,做個簡單探究和總結。本文主要介紹了關於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) })###上面是我整理給大家的,希望今後會對大家有幫助。 ######相關文章:#########在vue2中透過keep-alive如何使用############在webpack中有關於jquery外掛程式的環境配置(詳細教學)############在Bootstrap4 Vue2中如何實作分頁查詢######
以上是在axios中如何實現cookie跨域的詳細內容。更多資訊請關注PHP中文網其他相關文章!