我在主干中有一个应用程序。在这个应用程序中,我获取了一个存储在我的服务器中的 json。出于某种原因,现在我不想从文件中获取 json,而是从 PHP 传递的数组(与 Json 相同的结构)中获取。我可以更改我的代码来做同样的事情吗?这是我的应用
var CombinationView = Backbone.View.extend({
template: _.template($("#hotel-list-template").html()),
initialize: function(){
this.list = new HotelCollection([], {
url: 'includes/list.json'
});
this.list.on("sync", this.listLoaded, this);
this.list.fetch();
},
render: function(){
this.$el.html('Loading...');
return this;
},
listLoaded: function(){
//code
}
});
我存储到 php 中的 var 是$list_object
如何更改我的代码以获取对象而不是 url?