function pv(ctx){ global.console.log(ctx.path);}module.exports=function(){ return async function(ctx,next){ pv(ctx); await next(); //next是继续执行下面的中间件,如果不写会直接跳出,不会继续执行 } }
//app.jsconst pv = require('./middleware/koa-pv');app.use(pv())
本文共 310 字,大约阅读时间需要 1 分钟。
function pv(ctx){ global.console.log(ctx.path);}module.exports=function(){ return async function(ctx,next){ pv(ctx); await next(); //next是继续执行下面的中间件,如果不写会直接跳出,不会继续执行 } }
//app.jsconst pv = require('./middleware/koa-pv');app.use(pv())
转载于:https://www.cnblogs.com/lanshu123/p/10703866.html