I'm using the underscore.js templating function and have done a template like this:

<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>

As you can see I have an if statement in there because all of my models won't have the date parameter. However this way of doing it gives me an error date is not defined. So, how can I do if statements within a template?

link|improve this question

40% accept rate
feedback

2 Answers

up vote 27 down vote accepted

This should do the trick:

<% if (typeof(date) != "undefined") { %>
    <span class="date"><%= date %></span>
<% } %>

Remember that in underscore.js templates if and for are just standard javascript syntax wrapped in <% %> tags.

link|improve this answer
Huge help, thanks! – lupefiasco Sep 25 '11 at 8:00
1  
Works great, and just discovered that JS switch/case statements work nicely in template markup, too. – nickb Nov 9 '11 at 2:45
Awesome answer. Can you please also tell how can I use alternating classes when I am using templates? Like first <li> should get class a and next b? – BlackDivine Nov 23 '11 at 7:18
feedback

Depending on the situation and or your style, you might also wanna use print inside your <% %> tags, as it allows for direct output. Like:

<% if (typeof(id) != "undefined") {
     print(id);
}
else {
    print('new Model');
} %>

And for the original snippet with some concatenation:

<% if (typeof(date) != "undefined") {
    print('<span class="date">' + date + '</span>');
} %>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.