小程序中添加跟新提示

2021/12/21 11:19:59

本文主要是介绍小程序中添加跟新提示,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 

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()
            }
          }
        })
      })
    })
    
  },



这篇关于小程序中添加跟新提示的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程