小程序onshow中页面跳转,当前页面一闪而过,怎么办?
做小程序登录验证,在需要用户信息页的页面中进行判断,如果没有用户信息,调到登录授权页面。
页面
onshow(){
if (this.userInfo==null){
wxfilter.checkUserinfo();
}
}
function checkUserinfo(){
…
wx.redirectTo({
url: ‘…/…/pages/comment/login’,
})
}
结果,点击页面后,的确跳转到登录授权页面了,但点击的页面也实现出来了,一闪而过,然后跳转至登录授权页面。
怎么解决这个问题?onshow方法执行后直接跳转至新页面,当前页面不要显示出来,一闪而过都不行。