小程序
小游戏
企业微信
微信支付
扫描小程序码分享
wx.getUpdateManager is not a function
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
// 基础库 1.9.90 开始支持wx.getUpdateManager()
if (wx.canIUse('getUpdateManager')){
var updateManager = wx.getUpdateManager();
updateManager.onCheckForUpdate(function (res) {
// 请求完新版本信息的回调
console.log(res.hasUpdate)
if (res.hasUpdate) {
// 当微信检查到小程序有新版本,会主动触发下载操作(无需开发者触发),当下载完成后,会通过 onUpdateReady 告知开发者
updateManager.onUpdateReady(function () {
wx.showModal({
title: '更新提示',
content: '新版本已经准备好,为了您更好的使用一线加油,请重启应用~',
showCancel: false,
confirmText: '立即重启',
success: function (res) {
// 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
updateManager.applyUpdate()
}
});
updateManager.onUpdateFailed(function () {
// 新的版本下载失败
content: '新的版本下载失败',
真机上没作用
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
你好,请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
// 基础库 1.9.90 开始支持wx.getUpdateManager()
if (wx.canIUse('getUpdateManager')){
var updateManager = wx.getUpdateManager();
updateManager.onCheckForUpdate(function (res) {
// 请求完新版本信息的回调
console.log(res.hasUpdate)
if (res.hasUpdate) {
// 当微信检查到小程序有新版本,会主动触发下载操作(无需开发者触发),当下载完成后,会通过 onUpdateReady 告知开发者
updateManager.onUpdateReady(function () {
wx.showModal({
title: '更新提示',
content: '新版本已经准备好,为了您更好的使用一线加油,请重启应用~',
showCancel: false,
confirmText: '立即重启',
success: function (res) {
// 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
updateManager.applyUpdate()
}
});
});
}
});
updateManager.onUpdateFailed(function () {
// 新的版本下载失败
wx.showModal({
title: '更新提示',
content: '新的版本下载失败',
showCancel: false,
});
});
}
真机上没作用
你好,请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。