首页A关闭并跳转到B页,退出小程序,再次打开小程序就直接进入B页,只有重启微信后才能从首页A进入,首页wxml代码如下
<navigator open-type="redirect" url="../user/index/index" hover-class="navigator-hover">
<button type="primary" class="mButton">用户登录</button>
</navigator>
网友回复:
微信客户端会让小程序在后台保留一段时间的。
你可以通过场景值来确定重新进入的时候是否重启(wx.reLaunch)
@Can具体怎么解决啊
onLaunch: function (option) {
if (option.scene =='1001'){
wx.reLaunch({
url: 'pages/login/login'
})
};
}
无用
出错了么?
@Can没出错,但是没有起作用