Page({ data:{ param: null }, onLoad: function (options) { let q = options.q; if (q){ app.globalData.scene = util.getQueryString( 'scene' ,q); let url = decodeURIComponent(q); this .data.param = url.substr(url.indexOf( '?' )+1); } }, onReady: function (){ wx.setNavigationBarTitle({ title: '加载中' }) if (app.globalData.scene == 'zbo' ) { wx.navigateTo({ url: '../zbo/zbo?' + this .data.param }) } else if (app.globalData.scene == 'zboback' ) { wx.switchTab({ url: '../owner/course' }) } else { wx.switchTab({ url: '../free/free' }) } } }) |
扫描普通二维码进入到小程序这个页面,明明执行了 wx.switchTab 但是就是没反应!开发模式
请问这个问题解决了吗?