UpdateManager.onUpdateFailed
2020-08-20 11:59 更新
解释:当新版本下载失败,会进行回调
Web 态说明:由于 Web 态小程序暂不支持手动管理小程序更新,因此 UpdateManager.onUpdateFailed 不会执行。
方法参数
Function callback
示例
图片示例
代码示例
<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.onUpdateFailed(err => {
// 请求完新版本信息的回调
console.log('版本更新失败原因', err);
swan.showToast({
title: '版本更新失败,请重试',
icon: 'none'
});
});
}
});
以上内容是否对您有帮助:
更多建议: