AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
[TOC] ### Koa2 中间件 ``` import Koa from 'koa'; const app = new Koa(); // 中间件1 app.use(async (ctx, next) => { console.log('1') await next() console.log('5') }) // 中间件2 app.use(async (ctx, next) => { console.log('2') await next() console.log('4') }) // 中间件3 app.use(async (ctx, next) => { console.log('3') }) app.listen(3000) ``` >[danger] 执行结果 1 2 3 4 5 中间件执行顺序为洋葱模型