search

Home  >  Q&A  >  body text

My jump code in the click event of the login button does not take effect

loginBtnClick : function () {

app.globalData.userinfo = {

username: this.data.username, password: this.data.password

}

console.log(app.globalData.userinfo)

wx.redirectTo({

url: '../index/index',

})

},


panpan2480 days ago996

reply all(2)I'll reply

  • 邓宝伟

    邓宝伟2018-05-02 16:01:20

    wx.navigateTo/wx.redirectTo can only be used to jump to non-tabBar pages. To jump to tabBar pages, you need to use wx.switchTab

    reply
    1
  • Mio

    Thanks for the solution~

    Mio · 2018-08-17 14:45:09
  • Cancelreply