我這裏還有我的簡化代碼骨幹模型無法獲取任何數據
var PlayerModel = Backbone.Model.extend();
var PlayerProfileView = Backbone.View.extend({
model : new PlayerModel({url: "http://mysite.com/api/getpalyer.php"}),
render: function(){
this.model.fetch();
}
});
系統不斷給我這個錯誤消息
Uncaught Error: A "url" property or function must be specified
我完全不知道這有什麼錯我的代碼。
您已經定義了一個'PlayerModel'不是'Player',被認爲只是一個錯字你的榜樣? – ponzao 2013-05-13 08:56:08
這是一個錯誤的問題......但它是我的代碼中的PlayerModel – 2013-05-13 09:26:07
在最後'new PlayerModel({url:「http://mysite.com/api/getpalyer.php」})中替換分號;'with逗號作爲新的PlayerModel({url:「http://mysite.com/api/getpalyer.php」}),' – Cyclone 2013-05-13 09:37:39