forked from Qiu-Jun/wx_lovers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
62 lines (49 loc) · 2.04 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
class AppBootHook {
constructor(app) {
this.app = app;
}
// configWillLoad() {
// // 此时 config 文件已经被读取并合并,但是还并未生效
// // 这是应用层修改配置的最后时机
// // 注意:此函数只支持同步调用
// // 例如:参数中的密码是加密的,在此处进行解密
// this.app.config.mysql.password = decrypt(this.app.config.mysql.password);
// // 例如:插入一个中间件到框架的 coreMiddleware 之间
// const statusIdx = this.app.config.coreMiddleware.indexOf('status');
// this.app.config.coreMiddleware.splice(statusIdx + 1, 0, 'limit');
// }
// async didLoad() {
// // 所有的配置已经加载完毕
// // 可以用来加载应用自定义的文件,启动自定义的服务
// // 例如:创建自定义应用的示例
// this.app.queue = new Queue(this.app.config.queue);
// await this.app.queue.init();
// // 例如:加载自定义的目录
// this.app.loader.loadToContext(path.join(__dirname, 'app/tasks'), 'tasks', {
// fieldClass: 'tasksClasses',
// });
// }
// async willReady() {
// // 所有的插件都已启动完毕,但是应用整体还未 ready
// // 可以做一些数据初始化等操作,这些操作成功才会启动应用
// // 例如:从数据库加载数据到内存缓存
// this.app.cacheData = await this.app.model.query(QUERY_CACHE_SQL);
// }
// async didReady() {
// // 应用已经启动完毕
// const ctx = await this.app.createAnonymousContext();
// await ctx.service.Biz.request();
// }
async serverDidReady() {
await this.app.curl(`http://127.0.0.1:7001/setCity?city=${this.app.config.userData.weatherCity}`, {
method: 'GET',
dataType: 'json',
});
// // http / https server 已启动,开始接受外部请求
// // 此时可以从 app.server 拿到 server 的实例
// this.app.server.on('timeout', (socket) => {
// // handle socket timeout
// });
}
}
module.exports = AppBootHook;