對於主幹我很陌生,並且試圖添加一個「加載更多」按鈕來實現項目。我希望加載按鈕可以在每次點擊時從我的收藏中說出六個新項目。我將如何實現?骨幹收集。 「加載更多」按鈕
現在我有整個集合加載時查看initziales。但我想只是加載六個項目會更好? (那些將是可見的),然後我想追加六個新的每次點擊「加載更多」。
任何人都可以告訴我/幫我在這一個?
收集
define([
'Underscore',
'Backbone',
'app',
'VideoModel',
], function (_, Backbone, app, VideoModel) {
var VideoCollection = Backbone.Collection.extend({
model: VideoModel,
url: url,
parse: function (response) {
return response;
},
initialize: function() {
}
});
return VideoCollection;
});
模型
define([
'Underscore',
'Backbone',
'app',
],功能(_,骨幹,應用程序){
var VideoModel = Backbone.Model.extend({
defaults: function() {
return {
data: {
id: "",
created: "",
timestamp: ""
}
};
},
clear: function() {
this.destroy();
}
});
return VideoModel;
});
查看
define([
'Underscore',
'Backbone',
'app',
'VideoCollection'
]功能(_,骨幹,應用程序,VideoCollection){
var StartView = Backbone.View.extend({
tagName: "section",
id: "start",
className: "content",
events: {
},
initialize: function(){
$(".container").html(this.el);
this.template = _.template($("#start_template").html(), {});
this.collection = new VideoCollection();
this.render();
},
render: function(){
this.$el.html(this.template);
this.collection.fetch({
success: function (obj) {
var json = obj.toJSON()
for(var i=0; i<json.length; i++) {
}
}
});
},
kill: function() {
this.remove();
}
});
return StartView;
});