reLaunch方法在手机上和web开发者工具里的区别
有这么个现象:
wx.reLaunch({
url: ‘pages/index/index’
});
在web开发者工具里执行正确,而在手机上会报错:url not in app.json 反之:
wx.reLaunch({
url: ‘…/index/index’
});
在手机端执行正确,而在web开发者工具里报错: url not in app.json
我想请教下,我该怎么使用reLaunch!??