Backbone fetching data from model vs collection
问题 I created a simple backbone project, where it fetches all books details and show it in UI. I am fetching all the books details from the model. not at all using collection something like this var BookModel= Backbone.Model.extend({ initialize: function(){ this.fetchData(); }, fetchData: function(){ this.url= "/get/all_books"; this.fetch({ success: success_callback, error: error_callback }) } }); This is working fine. But why do I have to use collections ? If I would have used collection it