app.js 396 B

1234567891011121314
  1. 'use strict';
  2. class AppBootHook {
  3. constructor(app) {
  4. this.app = app;
  5. }
  6. async serverDidReady() {
  7. // 所有的插件都已启动完毕,但是应用整体还未 ready
  8. // 可以做一些数据初始化等操作,这些操作成功才会启动应用
  9. const ctx = await this.app.createAnonymousContext();
  10. await ctx.service.card.login();
  11. }
  12. }
  13. module.exports = AppBootHook;