获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
fail打印: errMsg: "navigateTo: fail can only be invoked after user TAP gesture" 问题是我点击了confirmText的文字登录,还打印这个
短剧播放器弹出showModal的confirm回调中调用navigateTo没有用?wx.showModal({ title: '温馨提示', content: '请先登录', showCancel: true, confirmText: '登录', success: function (res) { if (res.confirm) { that.pm.navigateTo({ url: '/pages/login/login', fail: function (res) { console.log(res) } }) } else if (res.cancel) { that.pm.navigateBack() } } })
03-10