6

使用下划线模板时,我想在锚的 href 属性中插入一个值,例如

a(href= "<%= id %>", class='products') //underscore template in jade

但输出是

<a href="&lt;% id %&gt;" class="products"> 

那么如何转义 < 和 > 符号,并正确插入值?

4

1 回答 1

3

使用 != 而不是 = 来取消转义。

在你的情况下:

a.products(href!="<%= id %>")
于 2012-09-18T15:08:54.783 回答