溫馨提示×

溫馨提示×

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

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

vue Nprogress進度條功能實現(xiàn)常見問題有哪些

發(fā)布時間:2021-07-27 09:22:51 來源:億速云 閱讀:225 作者:小新 欄目:開發(fā)技術(shù)

這篇文章主要介紹了vue Nprogress進度條功能實現(xiàn)常見問題有哪些,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

NProgress是頁面跳轉(zhuǎn)是出現(xiàn)在瀏覽器頂部的進度條
官網(wǎng):http://ricostacruz.com/nprogress/
github:https://github.com/rstacruz/nprogress

下圖中的這種頂部進度條是非常常見的,在vue項目中有對應(yīng)的插件。Nprogress

vue Nprogress進度條功能實現(xiàn)常見問題有哪些

Nprogress進度條的使用方法如下:

1.安裝nprogress插件

npm install --save nprogress
注意此處的--save等同于-s,就是將插件的名稱及版本號保存到package.json文件中的dependencies中,這樣其他人克隆項目后,可以通過npm install就可以下載下來所有的插件到node_modules中了。

2.nprogress插件的使用

此處進度條主要用于頁面路由的跳轉(zhuǎn)過程中,因此可以直接在router/index.js中使用:

在路由跳轉(zhuǎn)之前,開啟進度條加載,在路由跳轉(zhuǎn)之后,結(jié)束進度條的加載。

router/index.js文件內(nèi)容如下:

import Vue from "vue";
import VueRouter from "vue-router";
import store from "@/store";
import HomeLayout form "@/views/home/layout";
import NProgress from "nprogress";
import userCenter from "./modules/userCenter";
import 'nprogress/nprogress.css'
Vue.use(VueRouter);
NProgress.inc(0.2);
NProgress.configure({easing:'ease',speed:2000,showSpinner:false,trickle:false})
const routes = [{
	path:"/",
	name:"Index",
	redirect:"/index"
},{
	path:"/index",
	name:'Index',
	component:()=>import ('@/views/home/index.vue'),
	meta:{title:'首頁'}
},{
	path:'/home',
	name:'Home',
	component:()=>import('@/views/home/main'),
	meta:{title:'首頁'}
},{
	path:'/login',
	name:'Login',
	component:()=>import ('@/views/login'),
	meta:{title:'登錄'}
},{
	path:'/register',
	name:'register',
	component:()=>import('@/views/register'),
	meta:{title:'注冊'}
},{
	path:'/404',
	name:'404',
	component:()=>import('@/views/errorPage')
},{
	path:'*',
	redirect:'/404'
}]
const router = new VueRouter({
	mode:'history',
	routes
})
//路由跳轉(zhuǎn)之前做攔截
router.beforeEach((to,from,next)=>{
	//頁面跳轉(zhuǎn)之前,開啟進度條
	NProgress.start();
	//某些攔截操作,是否登錄權(quán)限等...
	const token = window.localStorage.getItem('token');//從localstorage中獲取緩存
	if(to.meta.title){
		document.title = to.meta.title;//將瀏覽器選項卡的標(biāo)題改為頁面的title
	}
	store.commit('changeCurrentPage',to.path);
	const reg = /[a-zA-Z]+\/$/;
	//不需要校驗的路由直接跳轉(zhuǎn)
	if(!to.meta.requireAuth){
		if(reg.test(to.path)){
			next(to.path.replace(reg,''));
			return;
		}
		next();
		return
	}
	if(token&&to.name!=='Index'){
		//已登錄且要跳轉(zhuǎn)的頁面不是登錄頁面
		if(reg.test(to.path)){
			next(to.path.replace(reg,''));
			return;
		}
		next();//可以直接跳轉(zhuǎn)
	}else if(token && to.name == 'Index'){
		//已登錄且要跳轉(zhuǎn)的頁面是登錄頁
		if(reg.test(to.path)){
			next(to.path.replace(reg,''));
			return
		}
		next('/home');//直接跳轉(zhuǎn)到首頁
	}else if(!token && to.name !='Index'){
		//未登錄且要跳轉(zhuǎn)的頁面不是登錄頁
		next('/index');//跳轉(zhuǎn)到登錄頁
	}else{
		if(reg.test(to.path)){
			next(to.path.replace(reg,''));
			return;
		}
		next()
	}
})
router.afterEach(to=>{
	NProgress.done();
	window.scrollTo(0,0);
})
//處理重復(fù)點擊當(dāng)前頁菜單,出現(xiàn)警告問題
const originalPush = VueRouter.prototype.push;
VueRouter.prototype.push = function push(location){
	return originalPush.call(this,location).catch(err=>err);
}
export default router;

上面的重點如下:

引入插件及對應(yīng)的css

vue Nprogress進度條功能實現(xiàn)常見問題有哪些

nprogress配置參數(shù)

vue Nprogress進度條功能實現(xiàn)常見問題有哪些

3.router.beforeEach路由跳轉(zhuǎn)之前攔截時,加載進度條

vue Nprogress進度條功能實現(xiàn)常見問題有哪些

4.router.afterEach路由跳轉(zhuǎn)結(jié)束后,關(guān)閉進度條

vue Nprogress進度條功能實現(xiàn)常見問題有哪些 

3.nprogress插件修改樣式

App.vue文件中的style樣式中,添加如下代碼,更改進度條的顏色

#nprogress .bar {
  background: #f90 !important; //自定義顏色
}

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“vue Nprogress進度條功能實現(xiàn)常見問題有哪些”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識等著你來學(xué)習(xí)!

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

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

AI