index.html中
app.checkState(function(err) {
if (err) {
mui.toast('没有登录');
mui.openWindow({
url: '../userReg.html',
id: 'userReg',
});
}//if
});
网页方式打开,能按照上述逻辑正常打开userReg.html页面
问题:
在手机上运行,能执行mui.toast('没有登录');,但不能装入userReg.html
后来mui.openWindow改为window.location.href = '../userReg.html'达到效果。
为什么?
1 个回复
BoredApe - 有问题就会有答案。
请上传能重现该问题的测试工程