美文网首页
uniapp小程序版本更新

uniapp小程序版本更新

作者: 我是七月 | 来源:发表于2023-03-14 09:53 被阅读0次
实现小程序的版本更新提示功能,效果图如下,当有新版本的时候,提示用户,然后点击确定,更新新版本,跳转到小程序首页。
WechatIMG478.jpeg
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) {
  // 新的版本下载失败
});

参考文献:
uniapp官网uni.getUpdateManager()!

相关文章

网友评论

      本文标题:uniapp小程序版本更新

      本文链接:https://www.haomeiwen.com/subject/xtghrdtx.html