我计划在 koa2 中使用 ejs,我的代码如下所示:
render(app, {
root: path.join(__dirname, 'views-ejs'),
layout: 'layout',
viewExt: 'ejs',
cache: false,
debug: true
});
app.use(function *() {
yield this.render('index',{
title: 'koa2 title',
viewClass: 'landing',
targetAuthLevel:'',
authorizationLevel:'6',
ngController: 'landingController'
});
});
但是,我收到以下警告,您能告诉我推荐的代码是什么吗?请。
koa deprecated 对生成器的支持将在 v3 中删除。有关如何转换旧中间件的示例,请参阅文档 https://github.com/koajs/koa/tree/v2.x#old-signature-middleware-v1x