koa的中间件
app.use(function *(next){
this; // is the Context
this.request; // is a koa Request
this.response; // is a koa Response
});
说明:
http模型里的请求和响应
对比express的中间件
app.use(function (req, res, next) {
return next();
});
express里的req和res是显式声明,看起来更清晰一些
next处理是一样的,二者无差异
注释1: 此处的this 并不同于通常状态下的this 指向(即调用者)。在koa中 this 指向每一次的请求,在请求接受后初始化,在一次请求结束后被释放。