1

I have a Name and Status fields on my table and I want to display the values, Active and Inactive for the Status field. Here is the template I'm using:

  <tbody>
<% _.each(accountLists, function(account) { if (account.active == 'true') ? 'Active': 'Inactive'%>
        <tr>
            <td><%= account.active %></td>
        </tr>
    <% }) %>
</tbody>

When I run, the template throws:

Uncaught SyntaxError: Unexpected token 

Why?

For reference, below is my accountView.js

var AccountList = Backbone.View.extend({

        initialize: function(){

},

    el:'#sub-account-list', 
    render: function(id){

    var self = this;
        var accountList = new SubAccountCollection([],{ id: id });

        accountList.fetch({
        success: function(accountLists){

            var data = accountLists.toJSON();
            var accounts = data[0].data.items;
            var template = $("#sub-account-list").html(_.template(tmpl, {accounts:accounts}));

                },
            });
        }
    });
Kate Gregory
  • 18,808
  • 8
  • 56
  • 85
user2942566
  • 455
  • 4
  • 10
  • 22
  • 1
    You should provide some raw JSON to test with. Maybe a neutered example of the structure of the data. Screenshots can only convey so much. Also, you should add this to your original question. Not create a new one. http://stackoverflow.com/questions/24154119/render-backbone-template-using-json-object – Giacomo1968 Jun 13 '14 at 03:11
  • i understand i should have added this question to my existing question before, but anyways, i resolved my issue i was facing. Thanks for the help..however i am stuck at this another issue, im trying to resolve on how can i write conditional statements in underscore template. Above is the code i have edited to show what im trying to achieve.. – user2942566 Jun 14 '14 at 20:49
  • Possible duplicate of [How to use if statements in underscore.js templates?](http://stackoverflow.com/questions/7230470/how-to-use-if-statements-in-underscore-js-templates) – T J Jun 28 '16 at 10:03

1 Answers1

6

This doesn't have much to do with underscore templates - it will translate roughly into:

_.each(accountLists, function(account) {
    if (account.active == 'true') ? 'Active': 'Inactive'
    echo ("<tr><td>" + account.active "</td></tr>");
})

I'm not sure what you wanted to do here, but this is horribly mixing the if statement with the conditional operator syntax. Use either

<tbody>
    <% _.each(accountLists, function(account) {
        if (account.active == 'true') { %>
        <tr>
            <td>Active</td>
        </tr>
    <%  } else { %>
        <tr>
            <td>Inactive</td>
        </tr>
    <%  }
    }); %>
</tbody>

or

<tbody>
    <% _.each(accountLists, function(account) { %>
        <tr>
            <td><%= (account.active == 'true') ? 'Active': 'Inactive' %></td>
        </tr>
    <% }); %>
</tbody>
Bergi
  • 630,263
  • 148
  • 957
  • 1,375
  • Didn't realize you could put JS expressions in `<%=` statements, I like `_.templates` 100x more now! – Tom Feb 22 '17 at 18:26