wx.switchTab跳转失败
开发工具和真机测试均可跳转
但预览无法跳转
App({ onLaunch() { // 展示本地存储能力 // var logs = wx.getStorageSync('logs') || [] // logs.unshift(Date.now()) // wx.setStorageSync('logs', logs) // 登录 wx.login({ success: res => { // 发送 res.code 到后台换取 openId, sessionKey, unionId // wx.showToast({ // title: res.errMsg // }) console.log(res) API.loginWeixin({ code: res.code }).then(res => { // wx.showToast({ // title: res.data.code.toString() // }) console.log('loginWeixin ', res) console.assert(res.data.hasLogin === true, '用户未登录!') wx.setStorageSync('token', res.data.token) wx.setStorageSync('userInfo', res.data.record) if (res.data.hasLogin) { wx.switchTab({ url: '/pages/index/main' }) } }) } })}) |
