I am receiving a JSON object where one of the value is null. The JSON looks like:
[{"id":"1096","price":null,
Right now, it is outputting a NULL string to the webpage with the following code. (I am using the template engine in Backbone.js/Underscore.js)
<div class="subtitle">$<%= price %></div>
Because I want to hide the entire div if no price is returned, I added the if statements:
<% if (price) { %>
<div class="subtitle">$<%= price %></div>
<% } %>
However it seems to still output the div.subtitle. What am I doing wrong? I also tried the following but they did not work
<% if (typeof(price) != "undefined") { %>
<div class="subtitle">$<%= price %></div>
<% } %>
<% if (price != null) { %>
<div class="subtitle">$<%= price %></div>
<% } %>
<% if (price != "null") { %>
<div class="subtitle">$<%= price %></div>
<% } %>
I suspect this has to do with using if statements inside Underscore.js’s templates
Uh, don’t you want (no exclamation mark)
Because you are current saying if there is no price then display the price…which makes no sense.