我尝试了官方文档,但这不起作用。
https://github.com/strapi/strapi-docs/blob/master/files/views.md
答案 0 :(得分:1)
此处是有关如何在Strapi中使用EJS的指南
...
{
"ejs": {
"enabled": true,
"layout": false,
"viewExt": "ejs",
"partial": true,
"cache": false,
"debug": true
}
}
...
module.exports = {
//GET /index
index: async (ctx) => {
ctx.render('home', {title: 'Hello world'});
}
};
<%= title %>
旁注:在上面的示例中,我在控制器api-name.js文件中使用了“索引”。确保您的API ./ api / api-name / config / routes.json 指向它。