mm_os
Version:
MM_OS服务端架构,用于快速构建应用程序,支持网站建设、小程序后台、AI应用、物联网(IOT/AIOT)、游戏服务端等多种场景。
24 lines • 531 B
JavaScript
/**
* 中间件
*/
module.exports = {
/**
* 主要逻辑
* @param {object} ctx Koa上下文
* @param {Function} next 下一个中间件
*/
async main(ctx, next) {
if (ctx.path !== '/favicon.ico') {
var event = $.admin.event('api');
var ret = await event.main(ctx.path, ctx, ctx.db);
if (ret) {
ctx.body = ret;
ret = await event.render(ctx.path, ctx, ctx.db);
if (ret) {
ctx.body = ret;
}
}
}
await next();
}
};