基础API更新dlt.getUpdateManager本页总览dlt.getUpdateManager简介获取全局唯一的版本更新管理器,用于管理小程序更新。参数无示例代码Page({ onLoad() { const updateManager = dlt.getUpdateManager(); // 1. 自动化更新流程 updateManager.onCheckForUpdate(function (res) { // 请求完新版本信息的回调 console.log(res.hasUpdate); }); },});