在Underscore JAVA中使用模板

时间:2016-05-24 09:43:07

标签: java underscore.js underscore.js-templating

如何使用下划线java模板库在java中使用模板。

图书馆:https://github.com/javadev/underscore-java

示例模板:

<h2>
    <%- listTitle %>
</h2>
<ul>
    <% _.each( listItems, function( listItem ){ %>
        <li>
            <%- listItem.name %>
            <% if ( listItem.hasOlympicGold ){ %>
                <em>*</em>
            <% } %>
        </li>
    <% }); %>
</ul>

<% var showFootnote = _.any(
    _.pluck( listItems, "hasOlympicGold" )
); %>

<% if ( showFootnote ){ %>
    <p style="font-size: 12px ;">
        <em>* Olympic gold medalist</em>
    </p>
<% } %> 

如何在java中填充此模板。

感谢。

0 个答案:

没有答案