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
1 Answer
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条)