UNPKG

mm_os

Version:

MM_OS服务端架构,用于快速构建应用程序,支持网站建设、小程序后台、AI应用、物联网(IOT/AIOT)、游戏服务端等多种场景。

34 lines (33 loc) 667 B
/** * 中间件 */ module.exports = { /** * 主要逻辑 * @param {object} ctx Koa上下文 * @param {Function} next 下一个中间件 */ async main(ctx, next) { if (!ctx.db) { ctx.db = { ret: null }; } if (ctx.path !== '/favicon.ico') { var event = $.admin.event('api'); var ret = await event.before(ctx.path, ctx, ctx.db); if (ret) { ctx.body = ret; return; } else { ret = await event.check(ctx.path, ctx, ctx.db); if (ret) { ctx.body = ret; return; } } } await next(); } };