- getMenuButtonBoundingClientRect报错的问题
首次进入直接微信闪退,wx.getMenuButtonBoundingClientRect()api直接报错
2019-12-30 - 关于小程序版本升级提示安卓手机无提示框的问题?下面是代码
// 检测微信小程序版本,更新 updataVersion: function () { if (wx.canIUse("getUpdateManager")) { const updateManager = wx.getUpdateManager() updateManager.onCheckForUpdate(function (res) { // 请求完新版本信息的回调 console.log(res.hasUpdate,'版本更新') }) updateManager.onUpdateReady(function () { wx.showModal({ title: '更新提示', content: '新版本已经准备好,需要重启使用最新功能', showCancel: false, confirmText: '知道了', success: function (res) { if (res.confirm) { // 新的版本已经下载好,调用 applyUpdate 应用新版本并重启 updateManager.applyUpdate() } } }) }) updateManager.onUpdateFailed(function () { // 新的版本下载失败 wx.showModal({ title: '更新失败', content: '新版本更新失败了,请检查网络!', showCancel: false }); }) } }
2019-12-02