如何逃生<>在javascript下划线模板?(how to escape <>

2019-06-28 03:55发布

使用下划线模板时,我想插在锚的href属性值一样

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

但放出来的

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

所以如何逃脱的<和>号,然后,正确地内插的值?

Answer 1:

使用!=的替代=反转义。

你的情况:

a.products(href!="<%= id %>")


文章来源: how to escape <> in javascript underscore template?