国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁技術(shù)文章
文章詳情頁

基于vue+element實現(xiàn)全局loading過程詳解

瀏覽:4日期:2023-01-08 16:05:59

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

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

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

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

//全局頁面跳轉(zhuǎn)是否啟用loadingexport const routerLoading = true;//全局api接口調(diào)用是否啟用loadingexport const apiLoading = true;//loading參數(shù)配置export const loadingConfig = { lock: true, text: ’Loading’, spinner: ’el-icon-loading’, background: ’rgba(0, 0, 0, 0.7)’}

接下來是全局的一個loading簡單封裝,代碼如下

import ElementUI from ’element-ui’;import {loadingConfig} from ’../src/config/index’ //全局的一個基本參數(shù)配置var loading = null ;const loadingShow = () => { loading = ElementUI.Loading.service(loadingConfig);}const loadingHide = () => { loading.close();}const loadingObj={ loadingShow, loadingHide}export default loadingObj

頁面跳轉(zhuǎn)時全局配置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組件的簡單封裝import {routerLoading} from ’../src/config/index’ //全局的頁面跳轉(zhuǎn)loading是否啟用Vue.use(ElementUI);Vue.config.productionTip = false/* eslint-disable no-new */new Vue({ el: ’#app’, router, components: { App }, template: ’<App/>’})//從后臺獲取的用戶角色const role = ’user’//當(dāng)進入一個頁面是會觸發(fā)導(dǎo)航守衛(wèi) router.beforeEach 事件router.beforeEach((to,from,next) => { routerLoading ? glo_loading.loadingShow() : ’’ //如果全局啟用頁面跳轉(zhuǎn)則加載loading if(to.meta.roles){ if(to.meta.roles.includes(role)){ next() //放行 }else{ next({path:'/404'}) //跳到404頁面 } }else{ next() //放行 }routerLoading ? glo_loading.loadingHide() : ’’//關(guān)閉loading層})

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

// 添加請求攔截器service.interceptors.request.use(function (config) { // 在發(fā)送請求之前做些什么 apiLoading ? glo_loading.loadingShow() : ’’//全局loading是否啟用 return config;}, function (error) { // 對請求錯誤做些什么 console.log(error); return Promise.reject(error);});// 添加響應(yīng)攔截器service.interceptors.response.use(function (response) { // 對響應(yīng)數(shù)據(jù)做點什么 if(response.status == 200){ return response.data; }else{ Promise.reject(); }}, function (error) { // 對響應(yīng)錯誤做點什么 console.log(error); apiLoading ? glo_loading.loadingHide() : ’’ return Promise.reject(error);});

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。

標(biāo)簽: Vue
相關(guān)文章:
主站蜘蛛池模板: 饶河县| 洞口县| 和林格尔县| 滦平县| 巨鹿县| 宜城市| 收藏| 依兰县| 兴山县| 上杭县| 阆中市| 休宁县| 呼伦贝尔市| 雷波县| 措美县| 彭阳县| 德州市| 醴陵市| 澎湖县| 昆山市| 无为县| 霍城县| 张北县| 龙山县| 镇宁| 灵寿县| 镇宁| 寻甸| 上蔡县| 祁门县| 东乌| 武功县| 东莞市| 宝应县| 清徐县| 桑日县| 通榆县| 饶平县| 太湖县| 新蔡县| 古丈县|