UpdateManager.applyUpdate
简介
强制小程序重启并使用新版本。在小程序新版本下载完成后(即收到 onUpdateReady 回调)调用。
参数
无
示例代码
Page({
onLoad() {
const updateManager = dlt.getUpdateManager();
updateManager.onUpdateReady(function () {
dlt.showModal({
title: '更新提示',
content: '新版本已经准备好,是否重启应用?',
success: function (res) {
if (res.confirm) {
// 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
updateManager.applyUpdate();
}
},
});
});
},
});