加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
app.js 790 Bytes
一键复制 编辑 原始数据 按行查看 历史
舒小凯 提交于 2024-04-24 22:02 . upd: 更新真实ip地址获取
/*
@description 初始化程序
@author shuxiaokai
@create 2020-10-08 22:10
*/
//=====================================添加额外数据类型校验====================================//
class AppBootHook {
constructor(app) {
this.app = app;
}
async didLoad() {
//=========================================================================//
this.app.once("server", server => {
// websocket
});
this.app.on("request", ctx => {});
this.app.on("response", ctx => {
const used = Date.now() - ctx.starttime;
const ip = ctx.get('x-forwarded-for');
ctx.logger.info("操作用时", used, ctx.request.url, ip);
});
}
}
module.exports = AppBootHook;
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化