配置EJS视图引擎选项 - Express框架

时间:2011-04-03 20:47:28

标签: node.js ejs

如何在EJS视图引擎中配置打开/关闭标记(see "Custom Tags" in the documentation),该标记包含在Express framework中?

1 个答案:

答案 0 :(得分:4)

http://expressjs.com/guide.html#view-rendering

下的文档中找到了这个
app.set('view options', {
    open: '{{',
    close: '}}'
});