小程序中添加跟新提示

 

app.js中添加

 

// 生命周期回调——小程序加载后
  onShow(options) {
    

    const updateManager = wx.getUpdateManager()
    updateManager.onCheckForUpdate(function (res) {
      // 请求完新版本信息的回调
      console.log(res.hasUpdate)
      if (!res.hasUpdate) return false
      updateManager.onUpdateReady(function () {
               wx.showModal({
          title: '更新提示',
          content: '新版本已经准备好,是否重启应用?',
          showCancel: false,
          confirmColor: '#F15999',
          success: function (res) {
            if (res.confirm) {
              updateManager.applyUpdate()
            }
          }
        })
      })
    })
    
  },

上一篇:微信小程序入门、目录结构配置、逻辑层注册程序和注册页面、作用范围及模块化、视图层、数据绑定、for循环、事件处理


下一篇:微信小程序 之 条件渲染、列表渲染