溫馨提示×

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

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

基于vue+element實(shí)現(xiàn)全局loading過(guò)程的案例分析

發(fā)布時(shí)間:2020-07-11 10:47:31 來(lái)源:億速云 閱讀:451 作者:清晨 欄目:開(kāi)發(fā)技術(shù)

這篇文章主要介紹基于vue+element實(shí)現(xiàn)全局loading過(guò)程的案例分析,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

項(xiàng)目中使用的是vue+element實(shí)現(xiàn)的全局loading

1.引入所需組件,這里主要就是router和element組件,element組件引入可以參考element官網(wǎng)

2.下面就是重點(diǎn)及代碼實(shí)現(xiàn)了

首先是全局的一個(gè)變量配置參數(shù),代碼如下:

//全局頁(yè)面跳轉(zhuǎn)是否啟用loading
export const routerLoading = true;

//全局api接口調(diào)用是否啟用loading
export const apiLoading = true;

//loading參數(shù)配置
export const loadingConfig = {
 lock: true,
 text: 'Loading',
 spinner: 'el-icon-loading',
 background: 'rgba(0, 0, 0, 0.7)'
}

接下來(lái)是全局的一個(gè)loading簡(jiǎn)單封裝,代碼如下

import ElementUI from 'element-ui';
import {loadingConfig} from '../src/config/index' //全局的一個(gè)基本參數(shù)配置

var loading = null ;
const loadingShow = () => {
 loading = ElementUI.Loading.service(loadingConfig);
}

const loadingHide = () => {
 loading.close();
}

const loadingObj={
 loadingShow,
 loadingHide
}

export default loadingObj

頁(yè)面跳轉(zhuǎn)時(shí)全局配置loading,代碼如下:

main.js中添加代碼:

// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from 'vue'
import App from './App'
import router from './router'
import ElementUI from 'element-ui';
import 'element-ui/lib/theme-chalk/index.css';

import glo_loading from '../loading/index' //loading組件的簡(jiǎn)單封裝
import {routerLoading} from '../src/config/index' //全局的頁(yè)面跳轉(zhuǎn)loading是否啟用

Vue.use(ElementUI);

Vue.config.productionTip = false

/* eslint-disable no-new */
new Vue({
 el: '#app',
 router,
 components: { App },
 template: '<App/>'
})

//從后臺(tái)獲取的用戶角色
const role = 'user'
//當(dāng)進(jìn)入一個(gè)頁(yè)面是會(huì)觸發(fā)導(dǎo)航守衛(wèi) router.beforeEach 事件
router.beforeEach((to,from,next) => {
 routerLoading &#63; glo_loading.loadingShow() : '' //如果全局啟用頁(yè)面跳轉(zhuǎn)則加載loading
 if(to.meta.roles){
  if(to.meta.roles.includes(role)){
   next() //放行
  }else{
   next({path:"/404"}) //跳到404頁(yè)面
  }
 }else{
  next() //放行
 }
routerLoading &#63; glo_loading.loadingHide() : ''//關(guān)閉loading層
})

在ajax請(qǐng)求的時(shí)候調(diào)用全局loading,代碼如下:

// 添加請(qǐng)求攔截器
service.interceptors.request.use(function (config) {
 // 在發(fā)送請(qǐng)求之前做些什么
 apiLoading &#63; glo_loading.loadingShow() : ''//全局loading是否啟用
 return config;
}, function (error) {
 // 對(duì)請(qǐng)求錯(cuò)誤做些什么
 console.log(error);
 return Promise.reject(error);
});

// 添加響應(yīng)攔截器
service.interceptors.response.use(function (response) {
 // 對(duì)響應(yīng)數(shù)據(jù)做點(diǎn)什么
 if(response.status == 200){
   return response.data;
 }else{
  Promise.reject();
 }
}, function (error) {
 // 對(duì)響應(yīng)錯(cuò)誤做點(diǎn)什么
 console.log(error);
 apiLoading &#63; glo_loading.loadingHide() : ''
 return Promise.reject(error);
});

以上是基于vue+element實(shí)現(xiàn)全局loading過(guò)程的案例分析的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

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

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎ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)容。

AI