var mount = require('koa-mount');
module.exports = function(app){
return function * routes(next){
function *ab (next){
this.body = 'hello Hello';
yield next;
}
app.use(mount('/hello',ab));
yield next;
}
};
app.use(routes(app));
请教一下 这样写路由,为什么不生效呢。