見つかったモデルのコレクションを取得できますか?現在のモデルの前後を計算するためのモデルのコレクションを取得したいと考えています。バックボーンで実行できますか?
var PhotoView = Backbone.View.extend({
className: "media-item",
template: _.template(photoItemTemplate),
render: function(){
var data, next;
data = this.model.toJSON();
this.$el.html(this.template(data));
return this;
},
prev: function () {
//this.model.collection = ??
},
next: function () {
//this.model.collection = ??
}
});