我想将默认的Swig tagControls {% ... %} 更改为 {? ... ?} 我正在使用sails.js 框架。
我添加到配置文件夹 swig.js 文件,其中包含:
module.exports.swig = {
SwigOpts: {
'tagControls': ['{?', '?}']
}
};
但它不起作用,在浏览器中查看是这样的:
{? for user in users ?}
{? user.email ?}
{? endfor ?}
所以,标签没有被解释。我的配置文件错了吗?标准标签 {% ... &} 工作正常。