小程序
小游戏
企业微信
微信支付
扫描小程序码分享
返回时经常会出现 :“跳转报错 navigateBack with an unexist webviewId 151”
如果在某个页面中的onShow方法判断是否有权限访问,没有权限访问则跳转到另外一个页面,这种连续跳转会导致ios下报navigateBack with an unexist webviewId 这个错误
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
/**
* 防止出现这种错误
* navigateTo with an already exist webviewId
* navigateBack with an unexist webviewId
*/
var buttonClicked = function(that){
that.setData({
buttonClicked:false
})
setTimeout(function(){
buttonClicked: true
},500);
}
Page({
* 页面的初始数据
data: {
},
clickBtn:function(){
if (!this.data.buttonClicked) { return }
buttonClicked(this);
//TODO....
})
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
/**
* 防止出现这种错误
* navigateTo with an already exist webviewId
* navigateBack with an unexist webviewId
*/
var buttonClicked = function(that){
that.setData({
buttonClicked:false
})
setTimeout(function(){
that.setData({
buttonClicked: true
})
},500);
}
Page({
/**
* 页面的初始数据
*/
data: {
buttonClicked: true
},
clickBtn:function(){
if (!this.data.buttonClicked) { return }
buttonClicked(this);
//TODO....
},
})