Vue使用axios發送請求並實現簡單封裝的示例詳解
一、安裝axios
npm install axios --save
二、簡單使用
1.配置
main.js中加入如下內容
// 引入axios --------------------------------------------------- import axios from 'axios' Vue.prototype.$axios = axios Vue.prototype.$axios.defaults.baseURL = 'http://127.0.0.1:8000/' // 請求根路徑 // -------------------------------------------------------------
2.發送請求
<1>get
this.$axios.get('index').then(res => { // 返回數據在 res.data 中 })
<2>post
this.$axios.post('login', {user:"admin", pwd:"123"}).then(res => { // 返回數據在 res.data 中 })
<3>並發
var res1 = this.$axios.get('index') var res2 = this.$axios.post('login', {user:"admin", pwd:"123"}) this.$axios.all([res1, res2]).then(this.$axios.spread(res1, res2) => { // 兩個請求的返回結果在 res1 和 res2 中 })
三、封裝使用
1.創建js封裝類
src/request/index.js
// 引入 import Axios from 'axios' import { Message } from 'element-ui' // 需要裝個 element-ui,錯誤提示界面友好一些 // 前端存在 localStorage 中的 token const token = localStorage.getItem('token') // 實例化 const request = Axios.create({ baseURL: "http://127.0.0.1:8000/", // 服務根路徑 timeout: 200000, // 請求過期時間 headers: { Authorization: token // token 插入請求頭給後端校驗 } }) // 攔截後端返回的請求 request.interceptors.response.use(res => { if (res.status !== 200) { Message.error("something err...") // 返回錯誤的提示信息 } return res.data // 隻取 res 中的 data,後續取值不需要再寫一層 data 瞭 }) // 導出 export default request
2.配置
main.js中改成如下內容
// 引入axios --------------------------------------------------- import request from './request' Vue.prototype.$http = request // -------------------------------------------------------------
3.發送請求
<1>get
this.$http.get('index').then(res => { // 返回數據在 res.data 中 })
<2>post
this.$http.post('login', {user:"admin", pwd:"123"}).then(res => { // 返回數據在 res.data 中 })
<3>並發
var res1 = this.$http.get('index') var res2 = this.$http.post('login', {user:"admin", pwd:"123"}) this.$http.all([res1, res2]).then(this.$http.spread(res1, res2) => { // 兩個請求的返回結果在 res1 和 res2 中 })
到此這篇關於Vue使用axios發送請求並實現簡單封裝的文章就介紹到這瞭,更多相關Vue axios發送請求封裝內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- vue項目中使用axios遇到的相對路徑和絕對路徑問題
- vue獲取token實現token登錄的示例代碼
- Vue中axios的基本用法詳解
- Vue使用axios添加請求頭方式
- Vue項目中token驗證登錄(前端部分)