每次看手册有种想打人的冲动
成功的回调不是放在参数里面穿过去的吗?
this .setData({ userInfo: res.userInfo, hasUserInfo: true , success: function () { console.log( "ssss" ) wx.redirectTo({ url: 'todoList/todoList' , }) } }) |
为什么不是这样回调的
正确的写法是
this .setData({ userInfo: res.userInfo, hasUserInfo: true , }, function (){ console.log( "ssss" ) wx.redirectTo({ url: '../todoList/todoList' , }) }) |