当前位置:   article > 正文

微信小程序版本自动更新_微信小程序cl version自增

微信小程序cl version自增

我是在app.js里进行版本检查

(页面最好有加载动图效果)

  onLaunch: function() {
    // 展示本地存储能力
    var logs = wx.getStorageSync('logs') || []
    logs.unshift(Date.now())
    wx.setStorageSync('logs', logs);
    //判断微信版本是否 兼容小程序更新机制API的使用
    //创建 UpdateManager 实例
    const updateManager = wx.getUpdateManager();
    //检测版本更新
    updateManager.onCheckForUpdate(function(res) {
      // 请求完新版本信息的回调
      if (res.hasUpdate) {
        //监听小程序有版本更新事件
    //新的版本已经下载好,调用 applyUpdate 应用新版本并重启 ( 此处进行了自动更新操作)
    wx.showModal({
      title: '提示',
      content: '检测到有新版本,是否更新?',
      success: function(res) {
        if (res.confirm) {
          wx.showLoading({
            title: '更新中...',
          })
          updateManager.onUpdateReady(function() {
            wx.hideLoading();
            updateManager.applyUpdate();
          })
        } else if (res.cancel) {
          wx.showToast({
     
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/在线问答5/article/detail/1017316
推荐阅读
相关标签
  

闽ICP备14008679号