收藏
回答

小程序升级后多长时间能同步到用户端?

小程序在3月底已经发布了新版本,但是去年的客户在5月15日再次打开小程序打开的还是老版本,客户有一年没访问过这个小程序,请问是什么原因

回答关注问题邀请回答
收藏

2 个回答

  • 陈宇明
    陈宇明
    2022-05-21

    1.加入更新代码

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

    2.让客户下拉删除小程序,重新进入

    2022-05-21
    有用
    回复
  • 跨商通
    跨商通
    2022-05-21

    https://developers.weixin.qq.com/miniprogram/dev/api/base/update/UpdateManager.html

    加这些代码来强制更新。

    2022-05-21
    有用
    回复
登录 后发表内容