I\'ve been using Backbone for a total of 3 days now, and I can see that this has been asked about quite a lot, but honestly I\'m just not getting it. I\'ve been banging my head
model comes with parse method , so when ever you are making mode.fetch() request , the output can be parse in model itself
example :
model = Backbone.Model.extend({ urlRoot:"/category/", parse : function( data ) { console.log(data); } })
var Model = new model({})