underscore.js 템플릿 기능을 사용하고 있으며 다음과 같은 템플릿을 수행했습니다.
<script type="text/template" id="gridItem">
<div class="griditem <%= gridType %> <%= gridSize %>">
<img src="<%= image %>" />
<div class="content">
<span class="subheading"><%= categoryName %></span>
<% if (date) { %><span class="date"><%= date %></span><% } %>
<h2><%= title %></h2>
</div>
</div>
</script>
보시다시피 모든 모델에 날짜 매개 변수가 없으므로 if 문이 있습니다. 그러나 이렇게하면 오류가 발생 date is not defined
합니다. 그렇다면 템플릿 내에서 if 문을 어떻게 수행 할 수 있습니까?