冲突JavaScript模板

时间:2013-11-16 16:21:35

标签: node.js swig-template dot.js

我正在使用模板Node.jsExpress.js + Swig上编写项目。 在用户端使用模板系统doT.js

问题出现在浏览器中传递如下行:

<h1> string {{= it.stringVar}} </ h1>

但我不知道如何使Swig不作为字符串变量的一部分处理(即不处理大括号)。

有没有解决我问题的机制?

提前致谢!

1 个答案:

答案 0 :(得分:3)

{% raw %}<h1> string {{= it.stringVar}} </ h1>{% endraw %}

swig docs中阅读更多内容。