我有这个简单的JSON饲料,我试图在一个BackBone.JS应用程序中阅读。
我面临的挑战是网络流量完全空白,如下图所示:
使用以下代码:
//Collections
var Topics = Backbone.Collection.extend({
model: TopicStruct,
initialize: function(){
console.log('Collector Responding!');
},
url: 'http://dev-sw-budget.gotpantheon.com/sort-coordinator-json',
render: function(){
console.log('Topics Render Responding!');
},
});
为什么我的Backbone应用程序中没有数据?
最新消息:
我的提取代码:
$(document).ready(
function(){
console.log('--- DOM Ready!');
var topics = new Topics();
var topicsView = new TopicsList({collection: topics});
topics.fetch({reset: true});
$('#data table').append(topicsView.el);
}
);
1条答案
按热度按时间brvekthn1#
我认为问题是你没有在你的集合中调用
fetch()
。我把你的代码放在一个JSFiddle中,它可以工作。