是否可以在Lodash模板(_.template)中编写IF条件?

时间:2015-06-29 10:04:17

标签: javascript lodash

类似的东西:

<div>
    <%- if (condition) { %>
        <div>This text will be shown if `condition` is true</div>
    <%- } %>
</div>

以上示例不起作用,所以我问是否有任何方法在模板字符串中使用IF条件,我知道Underscore支持开箱即用。

1 个答案:

答案 0 :(得分:8)

Use this:

<% if (condition) { %>...<% } %>

(in other words: remove the hyphen)