小程序
小游戏
企业微信
微信支付
扫描小程序码分享
现状
目前从文档获取到的信息来看,小程序冷启动的时候会检查更新,然后提供UpdateManager去主动应用更新
背景
很多时候,如果我们发版了,正在使用小程序的用户,是不知道有版本更新的。只有下次冷启动的时候,才有机会检查更新,然后确认使用新版。如果目前线上正在发生事故,RD做了bugfix并发布,仍然需要用户冷启动才能检查更新,修复比较慢
诉求
小程序是否有办法可以主动检查更新而非下次冷启动的时候检查,确实有很多情况,我们需要快速更替版本
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
在app.js onShow里
wx.getUpdateManager()
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
所以一般晚上发版。
用这段代码
if (wx.getUpdateManager) {
const updateManager = wx.getUpdateManager()
updateManager.onCheckForUpdate(function (res) {
})
updateManager.onUpdateReady(function () {
updateManager.applyUpdate()
wx.showModal({
title: '更新提示',
content: '新版本已下载完成,是否重启更新?',
success: function (res) {
if (res.confirm) {
}
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
在app.js onShow里
wx.getUpdateManager()
所以一般晚上发版。
用这段代码
if (wx.getUpdateManager) {
const updateManager = wx.getUpdateManager()
updateManager.onCheckForUpdate(function (res) {
})
updateManager.onUpdateReady(function () {
updateManager.applyUpdate()
wx.showModal({
title: '更新提示',
content: '新版本已下载完成,是否重启更新?',
success: function (res) {
if (res.confirm) {
updateManager.applyUpdate()
}
}
})
})
}