UpdateManager.onCheckForUpdate
2020-08-20 11:59 更新
解释:当向百度后台请求完新版本信息,会进行回调。
方法参数
Function callback
callback 返回参数说明
属性 | 类型 | 说明 | Web 态说明 |
---|---|---|---|
hasUpdate | Boolean | 是否有新的版本 | 由于 Web 态小程序始终用最新版本小程序包生成,因此 Web 态该值始终为 false 。 |
示例
代码示例
<view class="wrap">
<view class="card-area">
<view class="top-description border-bottom">onCheckForUpdate</view>
<button type="primary" bindtap="bindOnCheckForUpdate">button</button>
</view>
</view>
Page({
bindOnCheckForUpdate() {
const updateManager = swan.getUpdateManager();
updateManager.onCheckForUpdate(res =>{
// 请求完新版本信息的回调
if (!res.hasUpdate) {
swan.showToast({
title: '无可用更新版本',
icon: 'none'
});
}
});
}
});
以上内容是否对您有帮助:
更多建议: