バックボーンの残りのURLからモデルオブジェクトのコレクションをフェッチしています。次に、コレクションを繰り返し処理し、アンダースコアテンプレートヘルパーメソッドを使用してモデルのデータを処理します。しかし、属性を呼び出すと、未定義のdefaultImgが発生します。
意見:
define (['jquery','underscore','backbone'],function($,_,Backbone){
PopVideoView = Backbone.View.extend ({
tagName:"li",
//template: _.template($('#popView').html()),
template: _.template("<li><img src='<%= defaultImg %>'/></li>"),
render: function ()
{
console.log(this.model.toJSON());
this.template(this.model.toJSON());
this.$el.html(this.template);
return this;
}
});
return PopVideoView;
});
別のビュー:
define(['jquery','underscore','backbone','collections/PopVideos','views/PopVideo'],function($,_,Backbone){
PopVideosView = Backbone.View.extend ({
el:"#pop",
render: function ()
{
this.collection.each (function(video)
{
popVideoView = new PopVideoView({model:video});
this.$el.append (popVideoView.render().el).hide().fadeIn(300);
},this);
return this;
},
});
return PopVideosView;
});
これは私がChrome開発者コンソールから得ているものです:
Object {video_id: "1G4isv_Fylg", video_name: "Coldplay - Paradise ", defaultImg: "http://i.ytimg.com/vi/1G4isv_Fylg/mqdefault.jpg", genre: "pop", date: "Feb 16, 2013 1:01:33 PM"…}
Uncaught ReferenceError: defaultImg is not defined
私が間違っていることは何ですか?
これはモデルとコレクションです:
define (['jquery','underscore','backbone'],function($,_,Backbone){
Video = Backbone.Model.extend ({
urlRoot:"/video",
});
return Video;
});//end define
define(['backbone','models/Video'],function(Backbone,Video) {
PopVideosCollection = Backbone.Collection.extend ({
model:Video,
url:"/pop/3/1"
});
return PopVideosCollection;
});