🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
~~~ const Koa = require('koa'); const app = new Koa() const md1= async (ctx,next)=>{ ctx.type="text/html;charset=utf-8"; await next(); } const md2 = async (ctx,next)=>{ ctx.body="hello world"; await next() } const md3 = async (ctx,next)=>{ ctx.body = ctx.body+"JavaScript" await next() } app.use(md1); app.use(md2); app.use(md3); app.listen(8080) ~~~