I'm trying to download, parse and show a list, from the XML received from my server using Backbone.js. The code is like:
var Item = Backbone.collection.extend({
url: "http://myurl.com/file.xml",
parse: function() {
console.log("parse");
},
success: function(data) {
console.log(data);
},
error: function() {
console.log("error");
}
});
var View1=Backbone.view.extend({
initialize: function() {
var item = new Item();
item.fetch();
}
});
When I check it in the Chrome extension, the XML file is getting downloaded but the breakpoints placed in the parse, success, error directly lands to the error.
And it has 3 arguments, but I'm unable to extract any information from that.
"after.xmlwhen I was fixing your indentation. I assumed that was just a typo in your example, does you real code have double quotes in all the right places? – mu is too short Jul 16 '12 at 4:18loginside parse method ? Did you try with other browsers ? Is the xml served with correct mime type? – Deeptechtons Jul 16 '12 at 4:35Backbone.sync(), it does comes there before landing toerror, but its with the same arguments, i also tried debugging and going back to the source of Backbone, but its from some wrapper of Backbone, which tries to wrap already generated error ( not sure, where its getting generated) – rock_win Jul 16 '12 at 4:52