getUpdateManager对象onCheckForUpdate方法没有回调
如题, 在android手机,微信版本6.6.5以下时,wx.getUpdateManager()对象的onCheckForUpdate方法不执行回调。 const updateManager = wx.getUpdateManager() [代码][代码] updateManager.onCheckForUpdate(function (res) {// 请求完新版本信息的回调 [代码]//这个方法里的代码不会执行;[代码] if ( ! res.hasUpdate ) { console.log( ' 没有新版本要更新 ' ) }else{ wx.showLoading({ title: '版本更新中...', mask: true }) } }) 同时,在android手机中,微信版本6.6.6的手机第一次进入小程序也同样不会执行回调,但杀掉小程序进程后,再次打开小程序,则BUG消失,正常调用。 目前(项目组比较穷,ios手机没那么多)来说,ios手机没发现这个问题。 [代码]onUpdateReady和[代码]onUpdateFailed暂时没发现问题。