Closed hacke2 closed 8 years ago
app.use(function *(){ this.demo = 'test text'; }); app.use(function *(){ this.body = this.demo; });
这块代码有误,前一个中间件必须手动调用next,才能保证他的向下运行,正确示例如下:
app.use(function *(next){ this.demo = 'test text'; yield next; }); app.use(function *(){ this.body = this.demo; });
好像发错地方了。。
这块代码有误,前一个中间件必须手动调用next,才能保证他的向下运行,正确示例如下: