const Koa = require('koa'); const app = new Koa(); app.use(async(ctx, next) => { console.log(1); await next(); console.log(2); } ...
確定! 回上一頁