类似的东西:
<div>
<%- if (condition) { %>
<div>This text will be shown if `condition` is true</div>
<%- } %>
</div>
以上示例不起作用,所以我问是否有任何方法在模板字符串中使用IF条件,我知道Underscore支持开箱即用。
答案 0 :(得分:8)
Use this:
<% if (condition) { %>...<% } %>
(in other words: remove the hyphen)