У меня есть проблема входа с веб-сайтом, который использует:
- Vue.js v2.0.3
- vue-router v2.0.1
- vuex v0.8.2
В routes.js
У меня есть простая настройка перехватчика
router.beforeEach((to, from, next) => {
if (to.matched.some(record => record.meta.requiresAuth)) {
// this route requires auth, check if logged in
// if not, redirect to login page.
if (!router.app.auth.isUserLoggedIn) {
next({
path: '/login',
query: { redirect: to.fullPath }
})
} else {
next()
}
} else {
next() // make sure to always call next()!
}
})
И в login.vue
, который обрабатывает логин логина входа после использования API Google только для успешного входа в систему, я вызываю это:
this.login(userData).then(
() => this.$router.push(this.redirectToAfterLogin), // Login success
() => {} // Login failed
)
mounted: function(){
if (this.auth.isUserLoggedIn){
// Let just redirect to the main page
this.$router.push(this.redirectToAfterLogins)
}else{
Vue.nextTick(() => {
this.loadGooglePlatform()
})}}
computed: {
redirectToAfterLogin: function() {
if (this.$route.query.redirect){
return this.$route.query.redirect
}else{
return '/'
}
}
}
router.js
var VueRouter = require('vue-router')
// Router setup
export const router = new VueRouter({
linkActiveClass: "is-active",
mode: 'history',
saveScrollPosition: true,
routes: [
{ path: '', name: 'root', redirect: '/home' },
{ path: '/login', name: 'login', meta: { loadingNotRequired: true }, component: require('./pages/login.vue') },
{ path: '/logout', name: 'logout', meta: { loadingNotRequired: true }, component: require('./pages/logout.vue') },
{ path: '/home', name: 'home', title: 'Home', redirect: '/home/random', component: require('./pages/home.vue'),
children: [
{ path: 'random', name: 'random', meta: { requiresAuth: true }, title: 'Random', component: require('./pages/random.vue') }
]
}
]
})
// Redirect to login page if not logged In
router.beforeEach((to, from, next) => {
if (to.matched.some(record => record.meta.requiresAuth)) {
// this route requires auth, check if logged in
// if not, redirect to login page.
if (!router.app.auth.isUserLoggedIn) {
next({
path: '/login',
query: { redirect: to.fullPath }
})
} else {
next()
}
} else {
next() // make sure to always call next()!
}
})
Теперь здесь this.login
- это просто вызов vuex, чтобы обновить зарегистрированного пользователя.
Случается, что после входа в систему URL изменяется на /home, но DOM не обновляет!
Только способ, который успешно изменил DOM, заставлял location.reload()
, и это не то, что я хочу сделать, поскольку он теряет мои динамически загруженные сценарии G в Head.
Любая идея о том, что делать, чтобы заставить просмотр обновить DOM?
ПРИМЕЧАНИЕ: это происходит только при первом входе в систему пользователя, если он выходит из системы и возвращается, перенаправление в порядке