想问一下解决了吗
线上小程序出现routeDone with a webviewId 2 is not found发现用户出现偶发性bug,现象是控制台出现报错:routeDone with a webviewId 2 is not found,此时页面会无法做任何点击操作,但是可以滚动。请问会可能由什么原因导致呢?
08-16请问解决了吗
小程序报错routeDone with a webviewId 1 is not found怎么办?[图片]打开小程序使用switchTab路由更换一次之后,小程序就报这个错误,而且页面所有按钮点击事件全部失效,重新进入小程序之后小程序正常使用
08-16我也遇到了 想问一下解决了吗
控制台报错routeDone with a webviewId 91 is not found操作小程序时,偶尔会出现白屏,然后控制台报错routeDone with a webviewId 91 is not found,导致页面全部点击都失效,只能重启小程序[图片]
08-16请问这个问题有解决吗
wx.getUpdateManager在小程序ios始终获取都是false,Android正常?描述:正式环境版本更新发布后,使用wx.getUpdateManager在Android手机的微信小程序正常提示及更新,ios手机的小程序使用始终获取都是false,无法正常提示更新,这是什么情况? 代码:在全局onShow中加的 const updateManager = wx.getUpdateManager(); updateManager.onCheckForUpdate(function(res) { // 请求完新版本信息的回调 console.log("更新提示--", res.hasUpdate); ); updateManager.onUpdateReady(function(res) { wx.showModal({ title: '更新提示', content: '新版本已经准备好,是否重启应用?', success(res) { if (res.confirm) { // 新的版本已经下载好,调用 applyUpdate 应用新版本并重启 updateManager.applyUpdate(); } } }); }); updateManager.onUpdateFailed(function(res) { // 新的版本下载失败 // 新版本下载失败 wx.showModal({ title: '更新失败', content: '请退出并移除小程序,重新打开', }) });
2024-12-13