function pv(ctx){ global.console.log(ctx.path); } module.exports=function(){ return async function(ctx,next){ pv(ctx); await next(); //next是继续执行下面的中间件,如果不写会直接跳出,不会继续执行 } }
//app.js const pv = require(‘./middleware/koa-pv‘); app.use(pv())
原文地址:https://www.cnblogs.com/lanshu123/p/10703866.html
时间: 2024-11-08 05:06:57