javascript - Uncaught SyntaxError: Unexpected token ')' in underscore when looping throught template - Stack Ove

I have a problem when using underscore in Backbone application. In console I have Uncaught SyntaxError:

I have a problem when using underscore in Backbone application. In console I have

Uncaught SyntaxError: Unexpected token ')'

And it referer me to the underscore library :

underscore.js:line 1443

What I whant to do is select template by id

  var UserList = Backbone.View.extend({
               el: '.page',
               render: function(){
                   var self = this;
                   var users = new Users();
                   users.fetch({
                      success:function(users){
                          console.log(users);
                          var template = _.template($('#user_list_template').html(), users);
                          self.$el.html(template); 
                      } 
                   });
               }
            });

Here is my script template

<script type="text/template" id="user_list_template">

            <table class="table striped">
            <thead>
                <tr>
                    <th>Name</th>
                    <th>Age</th>
                </tr>
            </thead>
            <tbody>
                <% _.each(users,function(user)){ %>
                    <tr>
                        <td><%= user.name %></td>
                        <td><%= user.age %></td>
                    </tr>
                <% }); %>
            </tbody>
            </table>

        </script>

And as I found, the problem is in this line:

   var template = _.template($('#user_list_template').html(), users);

Could you help me please to find what is the problem?

I have a problem when using underscore in Backbone application. In console I have

Uncaught SyntaxError: Unexpected token ')'

And it referer me to the underscore library :

underscore.js:line 1443

What I whant to do is select template by id

  var UserList = Backbone.View.extend({
               el: '.page',
               render: function(){
                   var self = this;
                   var users = new Users();
                   users.fetch({
                      success:function(users){
                          console.log(users);
                          var template = _.template($('#user_list_template').html(), users);
                          self.$el.html(template); 
                      } 
                   });
               }
            });

Here is my script template

<script type="text/template" id="user_list_template">

            <table class="table striped">
            <thead>
                <tr>
                    <th>Name</th>
                    <th>Age</th>
                </tr>
            </thead>
            <tbody>
                <% _.each(users,function(user)){ %>
                    <tr>
                        <td><%= user.name %></td>
                        <td><%= user.age %></td>
                    </tr>
                <% }); %>
            </tbody>
            </table>

        </script>

And as I found, the problem is in this line:

   var template = _.template($('#user_list_template').html(), users);

Could you help me please to find what is the problem?

Share Improve this question asked Apr 29, 2015 at 10:20 volodymyr3131volodymyr3131 3452 gold badges6 silver badges16 bronze badges 1
  • Probably a duplicate of stackoverflow./questions/25881041/… – nikoshr Commented Apr 29, 2015 at 10:24
Add a ment  | 

1 Answer 1

Reset to default 8

<% _.each(users,function(user)){ %> this line has an extra ) before the { in your template.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1742348790a4427087.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信