您好,登錄后才能下訂單哦!
怎么在vue項(xiàng)目中自動(dòng)設(shè)置請(qǐng)求狀態(tài)?很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來(lái)學(xué)習(xí)下,希望你能有所收獲。
async handler() { this.loading = true await fetch() this.loading = false }
雖然是很簡(jiǎn)單的功能,可是要處理的地方多的時(shí)候,還是很繁瑣的,就想著能不能統(tǒng)一設(shè)置處理請(qǐng)求的 loading ,然后頁(yè)面根據(jù) loading 的狀態(tài)決定要顯示的內(nèi)容,就根據(jù)自己的想法做了一些封裝,自動(dòng)給所有 ajax 請(qǐng)求設(shè)置 loading 狀態(tài),主要思路是把所有請(qǐng)求集中到單一實(shí)例上,通過(guò) proxy 代理屬性訪(fǎng)問(wèn),把 loading 狀態(tài)提交到 store 的 state 中
安裝
$ npm install vue-ajax-loading
演示
在線(xiàn)demo(打開(kāi)較慢)
使用
配置 store 的 state 及 mutations
import { loadingState, loadingMutations } from 'vue-ajax-loading' const store = new Vuex.Store({ state: { ...loadingState }, mutations: { ...loadingMutations } })
把所有請(qǐng)求集中到一個(gè)對(duì)象上
import { ajaxLoading } from 'vue-ajax-loading' import axios from 'axios' import store from '../store' // Vuex.Store 創(chuàng)建的實(shí)例 axios.defaults.baseURL = 'https://cnodejs.org/api/v1' // 把請(qǐng)求集中到單一對(duì)象上,如: const service = { global: { // 全局的請(qǐng)求 getTopics() { return axios.get('/topics') }, getTopicById(id = '5433d5e4e737cbe96dcef312') { return axios.get(`/topic/${id}`) } }, modules: { // 有命名空間的請(qǐng)求,命名空間就是 topic topic: { getTopics() { return axios.get('/topics') }, getTopicById(id = '5433d5e4e737cbe96dcef312') { return axios.get(`/topic/${id}`) } } } } export default ajaxLoading({ store, service })
完成以上配置之后,通過(guò)上面 export default
出來(lái)的對(duì)象去發(fā)送請(qǐng)求,就會(huì)自動(dòng)設(shè)置請(qǐng)求的狀態(tài),然后可以在組件內(nèi)通過(guò) this.$store.state.loading
或 this.$loading
去訪(fǎng)問(wèn)請(qǐng)求狀態(tài),如:
<el-button type="primary" :loading="$loading.getTopics" @click="handler1">getTopics</el-button> <el-button type="primary" :loading="$loading.delay" @click="delay">定時(shí)兩秒</el-button> <el-button type="primary" :loading="$loading.topic.getTopics" @click="handler3">topic.getTopics</el-button> import api from 'path/to/api' export default { methods: { handler1() { api.getTopics() }, handler3() { api.topic.getTopics() }, delay() { api.delay() } } }
Options
store
Vuex.Store 創(chuàng)建的實(shí)例
service
包含所有請(qǐng)求的對(duì)象,可以配置 global 和 modules 屬性
global:全局作用域的請(qǐng)求,可以設(shè)置為 對(duì)象 或 數(shù)組對(duì)象
modules:帶命名空間的請(qǐng)求,類(lèi)型為 對(duì)象 ,屬性名即為命名空間
Vue是一套用于構(gòu)建用戶(hù)界面的漸進(jìn)式JavaScript框架,Vue與其它大型框架的區(qū)別是,使用Vue可以自底向上逐層應(yīng)用,其核心庫(kù)只關(guān)注視圖層,方便與第三方庫(kù)和項(xiàng)目整合,且使用Vue可以采用單文件組件和Vue生態(tài)系統(tǒng)支持的庫(kù)開(kāi)發(fā)復(fù)雜的單頁(yè)應(yīng)用。
看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注億速云行業(yè)資訊頻道,感謝您對(duì)億速云的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。