Koa 中的动态路由?

Dynamic routes in Koa?

假设我有一组如下所示的路线:

var routes = [
    {
        route: '/',
        handler: function* () { this.body = yield render('home', template.home) }
    },
    {
        route: '/about',
        handler: function* () { this.body = yield render('about', template.about) }
    }
];

app.use 他们的最佳方式是什么?我试过这样做(使用 koa-route 作为我的中间件):

Promise.each(routes, function(r) {
    app.use(route.get(r.route, r.handler));
}).then(function() {
    app.use(function *NotFound(next) {
        this.status = 404;
        this.body = 'not found';
    });
});

但它似乎不起作用(我也尝试过普通的 routes.forEach)。我做错了什么?

经过一些修改后,我通过这样做设法让上面的代码工作:

var routes = {
    '/': function* () { this.body = yield render('home', template.home); },
    '/about': function* () { this.body = yield render('about', template.about); }
};

app.use(function* respond() {
    if (routes[this.request.url])
        yield routes[this.request.url].call(this);
});

我会尽可能接受这个答案,但如果有人 post 有更好的解决方案,我会很乐意接受他们的。