Using Backbone.js, I would like to fetch the data from a Json file in the client part when calling the fetch method on model or collection instance.
The url property in my collection (MyCol) point to the following json file which looks like this:
[
{title: "_My trip to Bali", src: "bali-trip.jpg"},
{title: "_The flight home", src: "long-flight-oofta.jpg"},
{title: "_Uploading pix", src: "too-many-pics.jpg"}
]
I perform the following commands:
myCol = new MyCol();
myCol.fetch(); // the Request Method GET is ok
myCol.toJSON(); // []
myCol.fetch({ success: function(){ console.log("SUCCESS"); }, error: function(){ console.log("ERROR"); }showing you? – fguillen May 13 '12 at 8:27