const updateManager = uni.getUpdateManager();// 当向小程序后台请求完新版本信息,会进行回调updateManager.onCheckForUpdate(function (res) {console.log('是否有新版本', res.hasUpdate);});// 当新版本下载完成,会进行回调updateManager.onUpdateReady(function (res) {uni.showModal({title: '更新提示',content: '新版本已经准备好,是否重启应用?',success(res) {if (res.confirm) {// 当新版本下载完成,调用applyUpdate()方法会强制当前小程序应用上新版本并重启updateManager.applyUpdate();}}});});// 当新版本下载失败,会进行回调updateManager.onUpdateFailed(function (res) {// 新的版本下载失败});
转载:uni.getUpdateManager() | uni-app官网