update.ts 477 B

12345678910111213141516
  1. const updateManager = wx.getUpdateManager();
  2. export function appUpdate(force = false) {
  3. updateManager.onUpdateReady(function () {
  4. wx.showModal({
  5. title: '更新提示',
  6. content: '新版本已经准备好,是否重启应用?',
  7. showCancel: !force,
  8. success(res) {
  9. if (res.confirm) {
  10. // 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
  11. updateManager.applyUpdate()
  12. }
  13. }
  14. })
  15. })
  16. }