我是用个人版小程序,使用微信扫一扫,
//获取应用实例const app = getApp();
this.setData({
fromurl:'pages/mine/mine',
});
gowkorder() {
wx.switchTab({
url: this.data.fromurl.trim(),
});
},
app.json 中也设了"tabBar": {
{
"pagePath": "pages/mine/mine",
"iconPath": "images/mine.png",
"selectedIconPath": "images/mine-selected.png",
"text": "我的"
}
在VIEW设了
<button bindtap="gowkorder" >
返回
</button>
可是进不到指定页面。界面一直停留。不用扫一扫功能,是正常的。求大牛们有无办法帮我解决呢?
扫一扫,也不用操作全局变量。总的感觉是,扫一扫后,系统没有成功执行getApp()的。
1、扫码进入这个界面?
2、代码里没有看到使用app这个变量?
3、为啥不直接就跳tab的url?
wx.switchTab({ url:'/pages/mine/mine', });