how to escape <> in javascript underscore templ

2019-08-30 05:44发布

问题:

when using underscore template i want to interpolate a value in anchor's href attribute like

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

but the out put is

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

so how to escape the < and > sign , and interpolate the value correctly?

回答1:

Use != instead of = to unescape.

In your case:

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