小程序是多版本共存的,历史版本还是有人用的。因此,在适当时机提醒用户有新版本了,目的是尽量的让用户使用最新版本。
onLaunch: function() {
// #ifdef MP
if (uni.canIUse('getUpdateManager'))
{
const updateManager = uni.getUpdateManager()
updateManager.onCheckForUpdate(function (res) {
if (res.hasUpdate)
{
updateManager.onUpdateReady(function(){
uni.showModal({
title: '更新提示',
content: '新版本已经准备好,是否重启应用?',
success(res) {
if (res.confirm) {
// 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
updateManager.applyUpdate()
}
}
})
})
}
})
}
// #endif
}