如何更改路线,对我来说很重要。 因此,我想抓住浏览器或gsm的后退按钮更改路线的时间。
这就是我所拥有的:
router.beforeEach((to, from, next) => {
if ( /* IsItABackButton && */ from.meta.someLogica) {
next(false)
return ''
}
next()
})
是否可以使用一些内置解决方案代替IsItABackButton
注释?我猜Vue-router本身还没有,但是任何解决方法也可以在这里工作。还是会有其他更好的方式来识别它?
答案 0 :(得分:4)
这是我发现的唯一方法:
我们可以监听popstate,将其保存在变量中,然后检查该变量
// This listener will execute before router.beforeEach only if registered
// before vue-router is registered with Vue.use(VueRouter)
window.popStateDetected = false
window.addEventListener('popstate', () => {
window.popStateDetected = true
})
router.beforeEach((to, from, next) => {
const IsItABackButton = window.popStateDetected
window.popStateDetected = false
if (IsItABackButton && from.meta.someLogica) {
next(false)
return ''
}
next()
})
答案 1 :(得分:3)
如@Yuci所述,所有路由器钩子回调都在更新popstate之前执行(因此对于此用例无济于事)
您可以做什么:
new X509Certificate2(certContent, "", X509KeyStorageFlags.PersistKeySet | X509KeyStorageFlags.Exportable)
现在您可以在beforeEach回调中检查该标志并进行相应的处理。
methods: {
navigate(location) {
this.internalNavigation = true;
this.$router.push(location, function () {
this.internalNavigation = false;
}.bind(this));
}
}
答案 2 :(得分:0)
对@ yair-levy答案的改进很小。
将push
封装为自己的navigate
方法并不方便,因为您通常希望从各个地方调用push
()。取而代之的是,可以将路由器原始方法修补到一个位置,而无需更改其余代码。
以下代码是我的Nuxt插件,用于防止由后退/前进按钮触发的导航(在Electron应用程序中使用,以避免因鼠标额外的“后退”按钮而导致后退,这会在Electron应用程序中造成混乱) 相同的原理可用于香草Vue并跟踪常见的后退按钮以及您的自定义处理。
export default ({ app }, inject) => {
// this is Nuxt stuff, in vanilla Vue use just your router intances
const { router } = app
let programmatic = false
;(['push', 'replace', 'go', 'back', 'forward']).forEach(methodName => {
const method = router[methodName]
router[methodName] = (...args) => {
programmatic = true
method.apply(router, args)
}
})
router.beforeEach((to, from, next) => {
// name is null for initial load or page reload
if (from.name === null || programmatic) {
// triggered bu router.push/go/... call
// route as usual
next()
} else {
// triggered by user back/forward
// do not route
next(false)
}
programmatic = false // clear flag
})
}
答案 3 :(得分:0)
我在检测后退按钮导航方面遇到了同样的问题,而不是我的 Vue 应用程序中的其他类型的导航。
我最终做的是在我真正的内部应用导航中添加一个哈希值,以区分预期的应用导航和返回按钮导航。
例如,在这条路线 /page1
上,我想捕捉返回按钮导航以关闭打开的模型。想象一下,我真的想导航到另一条路线,我将向该路线添加一个哈希值:/page2#force
beforeRouteLeave(to, from, next) {
// if no hash then handle back button
if (!to.hash) {
handleBackButton();
next(false); // this stops the navigation
return;
}
next(); // otherwise navigate
}
这很简单,但确实有效。如果您在应用中使用哈希值不止于此,您将需要检查哈希值实际包含的内容。
答案 4 :(得分:0)
performance.navigation 已被弃用,所以怎么办! https://developer.mozilla.org/en-US/docs/Web/API/Performance/navigation
当你想注册任何全局事件监听器时,你应该非常小心。从注册时刻起每次都会调用它,直到您手动取消注册为止。对我来说,情况是我在创建组件时注册了 popstate 侦听器,以便在以下情况下侦听和调用某些操作:
被点击。之后,我取消注册 popstate 侦听器,以免在我不希望它被调用的其他组件中调用它,保持您的代码和方法调用干净:)
我的代码示例:
created() {
window.addEventListener('popstate', this.popstateEventAction );
},
methods: {
popstateEventAction() {
// ... some action triggered when the back button is clicked
this.removePopstateEventAction();
},
removePopstateEventAction() {
window.removeEventListener('popstate', this.popstateEventAction);
}
}
最好的问候!
答案 5 :(得分:-3)
这很容易做到。
const router = new VueRouter({
routes: [...],
scrollBehavior (to, from, savedPosition) {
if (savedPosition) {
// History back position, if user click Back button
return savedPosition
} else {
// Scroll to top of page if the user didn't press the back button
return { x: 0, y: 0 }
}
}
})
在这里检查: https://router.vuejs.org/guide/advanced/scroll-behavior.html#async-scrolling