溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Vue如何實(shí)現(xiàn)全局loading

發(fā)布時間:2021-07-06 13:43:56 來源:億速云 閱讀:319 作者:小新 欄目:web開發(fā)

這篇文章將為大家詳細(xì)講解有關(guān)Vue如何實(shí)現(xiàn)全局loading,小編覺得挺實(shí)用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

思路

我們項(xiàng)目請求使用的是axios,那么我們就在請求前后進(jìn)行攔截,添加我們需要的東西,然后通信控制loading,通信方式我就不寫了,有個老哥寫的不錯,可以去看看傳送門

代碼實(shí)現(xiàn)

首先對axios進(jìn)行封裝 如果你想進(jìn)行全局錯誤提醒 也可以在攔截的代碼進(jìn)行操作 具體代碼看下面

/**
 * axios 配置模塊
 * @module config
 * @see utils/request
*/

/**
 * axios具體配置對象
 * @description 包含了基礎(chǔ)路徑/請求前后對數(shù)據(jù)對處理,自定義請求頭的設(shè)置等
 */
const axiosConfig = {
 baseURL: process.env.RESTAPI_PREFIX,
 // 請求前的數(shù)據(jù)處理
 // transformRequest: [function (data) {
 // return data
 // }],
 // 請求后的數(shù)據(jù)處理
 // transformResponse: [function (data) {
 // return data
 // }],
 // 自定義的請求頭
 // headers: {
 // 'Content-Type': 'application/json'
 // },
 // 查詢對象序列化函數(shù)
 // paramsSerializer: function (params) {
 // return qs.stringify(params)
 // },
 // 超時設(shè)置s
 timeout: 10000,
 // 跨域是否帶Token 項(xiàng)目中加上會出錯
 // withCredentials: true,
 // 自定義請求處理
 // adapter: function(resolve, reject, config) {},
 // 響應(yīng)的數(shù)據(jù)格式 json / blob /document /arraybuffer / text / stream
 responseType: 'json',
 // xsrf 設(shè)置
 xsrfCookieName: 'XSRF-TOKEN',
 xsrfHeaderName: 'X-XSRF-TOKEN',
 // 下傳和下載進(jìn)度回調(diào)
 onUploadProgress: function (progressEvent) {
 Math.round(progressEvent.loaded * 100 / progressEvent.total)
 },
 onDownloadProgress: function (progressEvent) {
 Math.round(progressEvent.loaded * 100 / progressEvent.total)
 },
 // 最多轉(zhuǎn)發(fā)數(shù),用于node.js
 maxRedirects: 5,
 // 最大響應(yīng)數(shù)據(jù)大小
 maxContentLength: 2000,
 // 自定義錯誤狀態(tài)碼范圍
 validateStatus: function (status) {
 return status >= 200 && status < 300
 }
 // 用于node.js
 // httpAgent: new http.Agent({ keepAlive: true }),
 // httpsAgent: new https.Agent({ keepAlive: true })
}
/** 導(dǎo)出配置模塊 */
export default axiosConfig

開始構(gòu)建請求對象

const request = axios.create(config)

請求之前攔截

// 請求攔截器
request.interceptors.request.use(
 config => {
 // 觸發(fā)loading效果
 store.dispatch('SetLoding', true)
 return config
 },
 error => {
 return Promise.reject(error)
 }
)

請求后攔截

// 返回狀態(tài)判斷(添加響應(yīng)攔截器)
request.interceptors.response.use(

 (res) => {
 // 加載loading
 store.dispatch('SetLoding', false)
 // 如果數(shù)據(jù)請求失敗
 let message = ''
 let prefix = res.config.method !== 'get' ? '操作失敗:' : '請求失?。?#39;
 switch (code) {
  case 400: message = prefix + '請求參數(shù)缺失'; break
  case 401: message = prefix + '認(rèn)證未通過'; break
  case 404: message = prefix + '此數(shù)據(jù)不存在'; break
  case 406: message = prefix + '條件不滿足'; break
  default: message = prefix + '服務(wù)器出錯了'; break
 }
 let error = new Error(message)

 if (tip) {
  errorTip(vueInstance, error, message)
 }
 let result = { ...res.data, error: error }
 return result
 },
 (error, a, b) => {
 store.dispatch('SetLoding', false)
 process.env.NODE_ENV !== 'production' && console.log(error)
 return { data: null, code: 500, error: error }
 }
)

通信

我這邊通信用的是Vuex,其他方式類似

 state: {
 loading: 0
 },
 mutations: {
 SET_LOADING: (state, loading) => {
  loading ? ++state.loading : --state.loading
 },
 CLEAN_LOADING: (state) => {
  state.loading = 0
 }
 },
 actions: {
 SetLoding ({ commit }, boolean) {
  commit('SET_LOADING', boolean)
 },
 CLEANLOADING ({commit}) {
  commit('CLEAN_LOADING')
 }
 },
 getters: {
 loading (state) {
  return state.loading
 }
 }

state采用計數(shù)方式能夠避免一個頁面可能同時有多個ajax請求,導(dǎo)致loading閃現(xiàn)多次,這樣就會在所有ajax都結(jié)束后才隱藏loading,不過有個很重要的地方需要注意,每一個路由跳轉(zhuǎn)時無論ajax是否結(jié)束,都必須把state的值設(shè)置為0,具體下面的代碼

router.beforeEach((to, from, next) => {
 store.dispatch('CLEANLOADING')
 next()
})

全局的loading我這邊是加在home.vue里,由于我這個項(xiàng)目是后臺管理,可以加在layout.vue,其實(shí)都差不多

<div class="request-loading" :class="{'request-loading-show':loading}">
 <div class="request-loading-main" ></div>
</div>
import { mapGetters } from 'vuex'
export default { 
 data () {
 
 }
 computed: {
 ...mapState(['loading]) 
 }
<scrirpt lang="scss" scoped>
//這個我就不寫了 loading樣式不同 我們代碼也就不同
</script>

關(guān)于“Vue如何實(shí)現(xiàn)全局loading”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI