demo.js
var CommentsCollection = Backbone.Collection.extend({
url : "http://0.0.0.0:8080/"
});
var CommentsListView = Backbone.View.extend({
el: '.page',
render : function(){
var that = this;
var commentsCollection = new CommentsCollection();
commentsCollection.fetch({
success: () => {
var models = commentsCollection.models;
// _.each(models, function(models){
// console.log(models.get('firstname'));
// });
var template = _.template($('#reddit-comments-template').html());
that.$el.html(template(models));
}
})
}
});
var PageRouter = Backbone.Router.extend({
routes: {
'' : 'home'
}
});
Backbone.history.start();
index.html
<html>
<head>
<title> </title>
</head>
<body>
<div class="container">
<h1>Top posts</h1>
<hr />
<div class="page"></div>
</div>
<script type="text/template" id="reddit-comments-template">
<table class = "comments table">
<thead>
<tr>
<th>Row</th>
<th>Commments</th>
</tr>
</thead>
<tbody>
<tr>
<% _.each(models, function(models){ %>
<tr>
<td><%= models.get('firstname') %></td>
<td><%= models.get('lastname') %></td>
<td><%= models.get('id') %></td>
</tr>
<% }); %>
</tr>
</tbody>
</table>
</script>
<script type="text/javascript" src="jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="underscore-min.js"></script>
<script type="text/javascript" src="backbone-min.js"></script>
<script type="text/javascript" src="demo.js"></script>
</body>
</html>
Actually if you see, I tried some getting some data from the api and updating the view according to the changes in the data, the collection gets the data from the api and then I get the models of the collection to loop over the data from the model, the variables in the models get printed in the log I added in the js script in the comments as you can see but I guess the value is not passed to the html file, giving rise to that error. Can you please tell me how to correct it.