使用下划线模板时,我想插在锚的href属性值一样
a(href= "<%= id %>", class='products') //underscore template in jade
但放出来的
<a href="<% id %>" class="products">
所以如何逃脱的<和>号,然后,正确地内插的值?
使用下划线模板时,我想插在锚的href属性值一样
a(href= "<%= id %>", class='products') //underscore template in jade
但放出来的
<a href="<% id %>" class="products">
所以如何逃脱的<和>号,然后,正确地内插的值?
使用!=的替代=反转义。
你的情况:
a.products(href!="<%= id %>")