您好,登錄后才能下訂單哦!
這篇文章主要介紹“Vue封裝如何axios”,在日常操作中,相信很多人在Vue封裝如何axios問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Vue封裝如何axios”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
1、axios:是一個基于Promise的網絡請求庫。既可以在node.js(服務器端)使用,也可以在瀏覽器端使用
(1)在node.js中使用的原生的http模塊
(2)在瀏覽器中使用的XMLHttpRequest
2、vue中的使用方法
(1)安裝:npm install axios
(2)引用方法:
原生的方式(不推薦使用)
axios({ url:'http://127.0.0.1:9001/students/test', //遠程服務器的url method:'get', //請求方式 }).then(res=>{ this.students = res.data }).catch(e=>{ console.error(e); }) //缺點:每個使用axios的組件都需要導入
注:axios對服務端數據的封裝
res.config:響應信息的配置情況
res.data:響應的數據
res.headers:響應頭信息(信息的大小、信息的類型)
res.request:請求對象
res.status:請求、響應的狀態碼
res.statusText:請求、響應狀態碼對應的文本信息
在項目的main.js文件中導入axios,將其寫入Vue的原型中(推薦使用)
import axios from "axios"; Vue.prototype.$http = axios
在組件中通過this.$http的方式使用
this.$http.get('http://127.0.0.1:9001/students/test').then(res=>{ this.students = res.data }).catch(e=>{ console.log(e) })
缺點:只能在vue2使用,vue3中不能用
將axios單獨封裝到某個配置文件中(在配置文件中單獨封裝axios實例)
(1)配置文件:axiosApi.js
import axios from "axios"; const axiosApi = axios.create({ baseURL:'http://127.0.0.1:9001', //基礎地址 timeout:2000 //連接超時的時間(單位:毫秒) }) export default axiosApi //axiosApi是axios的實例
(2)使用:
import $http from '../config/axiosapi' $http.get('/students/test').then(res=>{ this.students = res.data.info }).catch(e=>{ console.log(e) })
優點:既可以在vue2中使用,也可以在vue3中使用
3、axios的不同請求方式向服務器提交數據的格式:
(1)get請求:服務器端通過req.quert參數名來接收
直接將請求參數綁定在url地址上
let str = '張三' $http.get('/students/test/?username='+str).then(res=>{ this.students = res.data.info }).catch(e=>{ console.log(e) })
通過params方式進行提交
let str = '張三' $http.get('/students/test',{ params:{ username:str } }).then(res=>{ this.students = res.data.info }).catch(e=>{ console.log(e) })
(2)post方式請求:服務器端通過req.body.參數名獲取數據
let str = '張三' $http.post('/students/test',{ username:str }).then(res=>{ this.students = res.data.info }).catch(e=>{ console.log(e) })
(3)put方式請求:和post方式一樣
(4)delete方式請求:和get方式一樣
到此,關于“Vue封裝如何axios”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。