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}));

                },
            });
        }
    });
2
  • 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.. Commented Jun 14, 2014 at 20:49
  • Possible duplicate of How to use if statements in underscore.js templates? Commented Jun 28, 2016 at 10:03

1 Answer 1

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>
Sign up to request clarification or add additional context in comments.

1 Comment

Didn't realize you could put JS expressions in <%= statements, I like _.templates 100x more now!

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.