小程序是多版本共存的,历史版本还是有人用的。时间久了就产生如下问题:

  1. 后端要维护旧版 api
  2. 存在 bug 的版本仍有人使用
  3. 新版本新增的功能,不能覆盖所有用户

因此,在适当时机我们需要提醒用户有新版本了,目的是尽量的让用户使用最新版本。以下是 uniapp 中检查小程序版本并提示更新的代码:

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
}