收藏
回答

onLaunch 调用 wx.redirectTo 没有效果

我想实现一个登录流程,

就是在 App 的 onLaunch 的时候,判断是否存在 token,如果没有,跳转到登录页面,但是页面不会跳转。

App({
  onLaunch: function(options) {
    let token = wx.getStorageSync('token');
    if (!token) {
      wx.redirectTo({
        url: '/pages/login/login',
        success: (res) => {
          console.log(res) // success {errMsg: "redirectTo:ok"}
        },
        fail: (err) => {
          console.log(err)
        }
      })
    }
  }
});


success 回调会被调用,但是页面没有跳转

回答关注问题邀请回答
收藏

2 个回答

  • 海子
    海子
    2018-06-13

    试试wx.reLaunch()

    2018-06-13
    有用 1
    回复 4
  • 一步
    一步
    2018-07-06

    这个注册程序的时候还有说明的,页面还没有生产的


    2018-07-06
    有用
    回复
登录 后发表内容