Closed songshiquan closed 1 year ago
问题描述 微信小程序在进行热启动的时候,进入到非tabbar页面,全局前置导航守卫未触发
复现步骤
// 全局路由前置守卫 router.beforeEach((to, from, next) => { console.log('to', to); const whiteList = ['/pages/base/login', '/pages/tabBar/home'] if (whiteList.includes(to.path)) { next() } else { next({ name: 'login', NAVTYPE: 'replace' }) } })
系统信息:
1.5.5 无法手动执行守卫,v2.0.0 支持手动触发
2.0.0 你可以在onShow的情况下强制执行守卫,但是需要注意好逻辑判断,避免多次触发
onShow
问题描述 微信小程序在进行热启动的时候,进入到非tabbar页面,全局前置导航守卫未触发
复现步骤
系统信息: