這篇文章主要介紹了怎么用vue實(shí)現(xiàn)axios的二次封裝的相關(guān)知識(shí),內(nèi)容詳細(xì)易懂,操作簡(jiǎn)單快捷,具有一定借鑒價(jià)值,相信大家閱讀完這篇怎么用vue實(shí)現(xiàn)axios的二次封裝文章都會(huì)有所收獲,下面我們一起來看看吧。
成都創(chuàng)新互聯(lián)公司,為您提供重慶網(wǎng)站建設(shè)、成都網(wǎng)站制作、網(wǎng)站營(yíng)銷推廣、網(wǎng)站開發(fā)設(shè)計(jì),對(duì)服務(wù)成都火鍋店設(shè)計(jì)等多個(gè)行業(yè)擁有豐富的網(wǎng)站建設(shè)及推廣經(jīng)驗(yàn)。成都創(chuàng)新互聯(lián)公司網(wǎng)站建設(shè)公司成立于2013年,提供專業(yè)網(wǎng)站制作報(bào)價(jià)服務(wù),我們深知市場(chǎng)的競(jìng)爭(zhēng)激烈,認(rèn)真對(duì)待每位客戶,為客戶提供賞心悅目的作品。 與客戶共同發(fā)展進(jìn)步,是我們永遠(yuǎn)的責(zé)任!
定義公共參數(shù)與引入組件:
import axios from 'axios' import qs from 'qs' axios.interceptors.request.use(config => { //顯示loading return config }, error => { return Promise.reject(error) }) axios.interceptors.response.use(response => { return response }, error => { return Promise.resolve(error.response) }) function errorState(response) { //隱藏loading console.log(response) // 如果http狀態(tài)碼正常,則直接返回?cái)?shù)據(jù) if (response && (response.status === 200 || response.status === 304 || response.status === 400)) { return response // 如果不需要除了data之外的數(shù)據(jù),可以直接 return response.data }else{ Vue.prototype.$msg.alert.show({ title: '提示', content: '網(wǎng)絡(luò)異常' }) } } function successState(res) { //隱藏loading //統(tǒng)一判斷后端返回的錯(cuò)誤碼 if(res.data.errCode == '000002'){ Vue.prototype.$msg.alert.show({ title: '提示', content: res.data.errDesc||'網(wǎng)絡(luò)異常', onShow () { }, onHide () { console.log('確定') } }) }else if(res.data.errCode != '000002'&&res.data.errCode != '000000') { Vue.prototype.$msg.alert.show({ title: '提示', content: res.data.errDesc||'網(wǎng)絡(luò)異常', onShow () { }, onHide () { console.log('確定') } }) } } const httpServer = (opts, data) => { let Public = { //公共參數(shù) 'srAppid': "" } let httpDefaultOpts = { //http默認(rèn)配置 method:opts.method, baseURL, url: opts.url, timeout: 10000, params:Object.assign(Public, data), data:qs.stringify(Object.assign(Public, data)), headers: opts.method=='get'?{ 'X-Requested-With': 'XMLHttpRequest', "Accept": "application/json", "Content-Type": "application/json; charset=UTF-8" }:{ 'X-Requested-With': 'XMLHttpRequest', 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8' } } if(opts.method=='get'){ delete httpDefaultOpts.data }else{ delete httpDefaultOpts.params } let promise = new Promise(function(resolve, reject) { axios(httpDefaultOpts).then( (res) => { successState(res) resolve(res) } ).catch( (response) => { errorState(response) reject(response) } ) }) return promise } export default httpServer
封裝理由:
1、可以和后端商量好錯(cuò)誤碼在這統(tǒng)一提示統(tǒng)一處理,省去不必要的麻煩
2、如果做接口全報(bào)文加解密都可以在此處理
接口統(tǒng)一歸類:
const serviceModule = { getLocation: { url: ' service/location/transfor', method: 'get' } } const ApiSetting = {...serviceModule } export default ApiSetting
歸類好處:
1、后期接口升級(jí)或者接口名更改便于維護(hù)
http調(diào)用:
關(guān)于“怎么用vue實(shí)現(xiàn)axios的二次封裝”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對(duì)“怎么用vue實(shí)現(xiàn)axios的二次封裝”知識(shí)都有一定的了解,大家如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。