我尝试将此服务器:http ://cshosting.webfactional.com/api/v1/projects/?format=json 获取 到一个主干.js 集合。然后我尝试 console.log 它,但它不起作用。这对我很重要,请帮助。
新闻:我发现它与 JSONP 有关。将很高兴听到有关此的更多信息。谢谢。
简而言之,这是我的代码的一部分:
window.ProjectList = Backbone.Collection.extend({
model: Project,
url:"http://cshosting.webfactional.com/api/v1/projects",
parse: function(response) {
return response.objects;
}
});
另一部分:
window.HomeView = Backbone.View.extend({
initialize:function () {
this.projectList = new ProjectList();
this.projectList.fetch({success : function() {console.log(this.projectList); }});
this.homeListView = new HomeListView({model: this.projectList});
}
});