'use strict'; class AppBootHook { constructor(app) { this.app = app; } // 应用已启动阶段 async didReady() { // 初始化数据 const ctx = await this.app.createAnonymousContext(); await ctx.service.install.index(); } } module.exports = AppBootHook;