我正在使用backbone.js,並試圖從twitter獲取一些json,但它不起作用,集合的長度爲0.下面是代碼。骨幹無法解析json
var Tweet = Backbone.Model.extend(); var Tweets = Backbone.Collection.extend({ model: Tweet, url: 'http://api.twitter.com/1/favorites.json?screen_name=dhh', parse: function(response) { return response.results; } }); var tweets = new Tweets(); tweets.bind('reset', function(tweets) { alert(tweets.length); }); tweets.fetch();
可能重複的[骨幹輸出空數組爲collection.models?](http://stackoverflow.com/questions/11954243/backbone-outputing-empty-array-for-collection-models) –
但那一個不'與json – Andy
可能重複[無法使用Backbone.js集合從Twitter RESTful API獲取數據](http://stackoverflow.com/questions/6224839/unable-to-fetch-data-from-twitter -restful-api-using-backbone-js-collection) –