您好,登錄后才能下訂單哦!
本篇內容主要講解“vue怎么結合axios實現restful風格”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“vue怎么結合axios實現restful風格”吧!
Axios 是一個基于 promise 的 HTTP 庫,可以用在瀏覽器和 node.js 中,基本請求有5種:
get
:多用來獲取數據
post
:多用來新增數據
put
:多用來修改數據(需要傳遞所有字段,相當于全部更新)
patch
:多用來修改數據,是在put的基礎上新增改進的,適用于局部更新,比如我只想修改用戶名,只傳用戶名的字段就ok了,而不需要像put一樣把所有字段傳過去
delete
:多用來刪除數據
axios其實和原生ajax,jquery中的$ajax類似,都是用于請求數據的,不過axios是基于promise的,也是vue官方比較推薦的做法。
這里解釋一下為什么要下載qs,qs的作用是用來將請求參數序列化,比如對象轉字符串,字符串轉對象,不要小看它,會在后面有大用處的。
// npm下載axios到項目中 npm install axios --save // npm下載qs到項目中 npm install qs.js --save
記住這邊使用axios時定義的名字,我定義的是axios,所以后續請求我也必須使用axios,當然你可以定義其他的,htpp,$axios,哪怕是你的名字都沒關系,注意規范。
// 引入axios import axios from 'axios' // 使用axios Vue.prototype.axios = axios; // 引入qs import qs from 'qs' // 使用qs Vue.prototype.qs = qs;
可在main.js里定義
// 右邊就是你后端的每個請求地址公共的部分 // * : 地址是我瞎編的,涉及隱私,大家只要把每個請求地址一樣的公共部分提出來即可 Vue.prototype.baseURL = "http://127.0.0.1:9000/api";
在config中的dev.env和prod.env中配置,在main.js里使用那兩個文件的變量即可
①dev.env:本地環境
'use strict' const merge = require('webpack-merge') const prodEnv = require('./prod.env') module.exports = merge(prodEnv, { NODE_ENV: '"development"', // 這里是本地環境的請求地址(請忽略地址,明白原理即可) API_ROOT: ' "http://localhost:8080/web" ' })
②prod.env:上線環境
'use strict' const merge = require('webpack-merge') const prodEnv = require('./prod.env') module.exports = merge(prodEnv, { NODE_ENV: '"development"', // 這里是本地環境的請求地址(請忽略地址,明白原理即可) API_ROOT: ' "http://localhost:8080/web" ' })
③main.js中使用此路徑
Vue.prototype.baseURL = process.env.API_ROOT;
舉個例子:
當我在登錄頁面點擊登錄,然后需要請求后臺數據判斷登錄是否能通驗證,以此來判斷是否能正常登錄,請求方法我寫在methods里了,通過vue的@click點擊事件,當點擊登錄按鈕發起請求,然后通過vue的v-model綁定用戶名和密碼文本框的值,用來獲取用戶輸入的值以便獲取發送參數
之前我定義的變量是axios,所以這邊使用this.axios發起請求,post是請求方式,而我需要把用戶名和密碼以字符串的形式發送,所以需要qs序列化參數(qs不是必須的,具體根據你請求發送的參數和后端定義的參數格式匹配即可)
.then
是請求成功后的回調函數,response包含著后端響應的數據,可以打印看看
.catch
是請求失敗后的捕獲,用來校驗錯誤
login() { this.axios.post('http://bt2.xyz:8083/login/checkAdmin', qs.stringify({ "username": this.userinfo.username, "password": this.userinfo.password }), { headers: { 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8' } }) .then((response) => { console.log(response); }) .catch((error) => { console.log(error); }); }
以上方法也可以這樣寫:
login() { this.axios({ method:"post", url:"http://bt2.xyz:8083/login/checkAdmin", data:qs.stringify({ "username": this.userinfo.username, "password": this.userinfo.password }), headers: { 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8' } }) .then((response) => { console.log(response); }) .catch((error) => { console.log(error); }); }
注 : get、delete請求的參數是params(特殊情況可以直接跟在地址后面),而post、put、patch的參數是data
下面我們看看四種具體的請求方式吧 (忽略地址,涉及隱私所以就輸了假的地址):
這里的${this.baseURL}就是我們前面定義的全局路徑,只要在后面跟上變化的地址即可
這里的headers和qs不是必須的,因為我們業務需要傳遞這些數據,所以我才寫的,大家只是參考格式即可
這里給出每種請求的兩種寫法,不盡相同,所以具體的請求還得看業務需求
put請求用的比較多,patch我自己用的很少,但是原理都是一樣的,這里就不多說了
使用箭頭函數是為了不改變this指向,方便后期處理數據
this.axios({ method: "get", url:`${this.baseURL}/GetAll`, headers: { Account: "Admin", Password:"123456" } }) .then((response)=> { console.log(response) }) .catch((error)=> { console.log(error); });
this.axios.get('http://bt2.xyz:8083/solr/adminQuery', { params: { "page": 1, "rows": 5 } }) .then((response)=> { console.log(response) }) .catch((error)=> { console.log(error); });
this.axios({ method:"post", url:`${this.baseURL}/Create`, headers: { Account: "Admin", Password:"123456" }, data:qs.stringify({ Title: this.addTitle, Host: this.addHost, Port: this.addPort, Account: this.addAccount, Password: this.addPassword, DbName: this.addDbName }) }) .then( (response)=> { console.log(response); }) .catch(function (error) { console.log(error); });
login() { this.axios.post('http://bt2.xyz:8083/login/checkAdmin', qs.stringify({ "username": this.userinfo.username, "password": this.userinfo.password }), { headers: { 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8' } }) .then((response) => { console.log(response); }) .catch((error) => { console.log(error); }); }
像這個請求,我就在地址欄后面追加了一個參數,id,只要后端格式允許,也可以這樣做
this.axios({ method:"put", url:`${this.baseURL}/Update/`+(this.Data[index].id), headers: { Account: "Admin", Password:"123456" }, data:qs.stringify({ Title: inputs[0].value, Host: inputs[1].value, Port: inputs[2].value, Account: inputs[3].value, Password: inputs[4].value, DbName: inputs[5].value }) }) .then( (response)=> { console.log(response); }) .catch(function (error) { console.log(error); });
this.axios.put('http://bt2.xyz:8083/Goods/update', { "goodsId": goodsId, "goodsName": goodsName, "goodsPrice": goodsPrice, "goodsNum": goodsNum, "goodsKind": 1, "goodsWeight": goodsWeight }) .then((response)=> { console.log(response) }) .catch((error)=> { console.log(error); });
this.axios({ method:"delete", url:`${this.baseURL}/Delete/`+(this.Data[index].id), headers: { Account: "Admin", Password:"123456" } }) .then((response)=> { console.log(error); }) .catch((error)=> { console.log(error); });
this.axios.delete('http://bt2.xyz:8083/Goods/delete?goodsId=' + this.ProductId) .then((response)=> { console.log(response) }) .catch((error)=> { console.log(error); });
到此,相信大家對“vue怎么結合axios實現restful風格”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。