Version: 3.xTaro.getUpdateManager()获取全局唯一的版本更新管理器,用于管理小程序更新。 关于小程序的更新机制,可以查看运行机制文档。参考文档类型#() => UpdateManagerCopy参数#示例代码#const updateManager = Taro.getUpdateManager() updateManager.onCheckForUpdate(function (res) { // 请求完新版本信息的回调 console.log(res.hasUpdate)})updateManager.onUpdateReady(function () { Taro.showModal({ title: '更新提示', content: '新版本已经准备好,是否重启应用?', success: function (res) { if (res.confirm) { // 新的版本已经下载好,调用 applyUpdate 应用新版本并重启 updateManager.applyUpdate() } } })})updateManager.onUpdateFailed(function () { // 新的版本下载失败})CopyAPI 支持度#API微信小程序H5React NativeTaro.getUpdateManager✔️