我們正在使用backbone集合從文件中加載JSON。現在,如果我採用相同的文件內容並將其放入一個數組並調用一個url函數,似乎沒有任何工作..你能請幫助..Backbone Collection URL函數
var cool = {};
cool.Item = Backbone.Model.extend({});
cool.Items = Backbone.Collection.extend({
model: cool.Item,
url: "data.json"
此代碼的工作
var cool = {};
cool.Item = Backbone.Model.extend({});
cool.Items = Backbone.Collection.extend({
model: cool.Item,
url: this.return(cool_cont());
function cool_cont()
{
* JSON object*
}
這個代碼不工作..
是不是'返回'一個保留字? – stusmith 2012-08-14 09:33:02
should this this.return(cool_cont()not be this.cool_cont()instead?什麼是* JSON對象*究竟是什麼?請發佈完整代碼。 當您說「不工作」時,究竟發生了什麼? – schacki 2012-08-14 09:38:28