UpdateManager.applyUpdate
2020-08-20 11:59 更新
UpdateManager.applyUpdate
解释: 当新版本下载完成,调用该方法会强制当前小程序应用上新版本并重启。
Web 态说明:由于 Web 态小程序暂不支持手动管理小程序更新,因此 UpdateManager.applyUpdate 不会执行。
方法参数
无
示例
图片示例
代码示例
<view class="wrap">
<view class="card-area">
<view class="top-description border-bottom">此api会强制当前小程序应用上新版本并重启</view>
</view>
</view>
Page({
onLoad() {
this.updateManager = swan.getUpdateManager();
this.updateManager.onUpdateReady(res => {
swan.showModal({
title: '更新提示',
content: '新版本已经准备好,是否重启应用?',
success:res => {
if (res.confirm) {
// 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
this.updateManager.applyUpdate();
}
}
});
});
}
});
以上内容是否对您有帮助:
更多建议: