在這之前是給路由加一個meta屬性: 註意:但是事實是登錄的時候大多數時候並不進行跳轉,所以這裡需要在login跳轉的路徑中再加一段: ...
router.beforeEach((to, from, next) => { if (to.matched.some(record => record.meta.requireAuth)){ // 判斷該路由是否需要登錄許可權 if (token) { // 判斷當前的token是否存在 next(); } else { next({ path: '/login', query: {redirect: to.fullPath} // 將跳轉的路由path作為參數,登錄成功後跳轉到該路由 }) } } else { next(); } });
在這之前是給路由加一個meta屬性:
{ path: '/index', meta: { title: '', requireAuth: true, // 添加該欄位,表示進入這個路由是需要登錄的 },
}
註意:但是事實是登錄的時候大多數時候並不進行跳轉,所以這裡需要在login跳轉的路徑中再加一段:
if(this.$route.query.redirect){ // let redirect = decodeURIComponent(this.$route.query.redirect); let redirect = this.$route.query.redirect; this.$router.push(redirect); }else{ this.$router.push('/'); }