2018-09-29 小程序如何进行版本更新

2018-09-29  本文已影响0人  tsl1127

1、相关文档
https://developers.weixin.qq.com/miniprogram/dev/api/update/UpdateManager.html
https://developers.weixin.qq.com/miniprogram/dev/framework/operating-mechanism.html
2、相关参考
https://developers.weixin.qq.com/community/develop/doc/000e2c0ca50a10233167de05c51800?highLine=%25E7%2589%2588%25E6%259C%25AC%25E6%259B%25B4%25E6%2596%25B0

3、说明
代码部分:
// 更新版本
updateVersion () {
var 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()
            }
        }
    });

});

updateManager.onUpdateFailed(function () {
    // 新的版本下载失败
    wx.showModal({
        title: '更新提示',
        content: '新版本下载失败',
        showCancel:false
    });
});

}

将上面的函数在app.js的onLaunch里即可

3.2、小程序开发版/体验版没有「版本」概念,所以无法在开发版/体验版上测试更版本更新情况

如何在开发者工具里模拟?


image.png

勾选上,点击确定后,重新编译,就会出现


image.png
重新编译一次后,编译模式里的打勾选项会被自动取消,下次要再模拟的话,需要重新勾选
上一篇下一篇

猜你喜欢

热点阅读