问题模块 框架类型 问题类型 操作系统版本 手机型号 微信版本
客户端 微信小程序 Bug iOS 12.0.1 iPhone 6.7.3
bug异常
thirdScriptError undefined is not an object (evaluating 'r.apply');at App onLaunch function;at onCheckForUpdate callback function https://lib/WAService.js:1:100160 https://lib/WAService.js:1:395965 forEach@[native code] Zd@https://lib/WAService.js:1:395929 https://lib/WAService.js:1:395896 emit@https://lib/WAService.js:1:205071 https://lib/WAService.js:1:395774 https://lib/WAService.js:1:168290 S@https://lib/WAService.js:1:1731 global code
代码片段
if(wx.getUpdateManager){ const updateManager = wx.getUpdateManager(); updateManager.onCheckForUpdate(); updateManager.onUpdateReady(function(err){ console.log('跟新版本准备好了', err); updateManager.applyUpdate(); wx.showToast({ icon: 'success', title: '新版本已经准备好' }); }); updateManager.onUpdateFailed(function (err) { console.log('更新版本失败', err); updateManager.onCheckForUpdate(); });}
微信小程序开发问题解答
微信小程序开发者回答:
出现相同问题,而且是之前没有这个问题,最近才开始报这个错的,不知道是不是官方有什么更新导致的
微信小程序开发者回答: updateManager.onCheckForUpdate();你这个写成这样updateManager.onCheckForUpdate(function(res){});
本文网址:http://www.91bianli.com/weixinxiaochengxu/34244.html