0
컬렉션 내부에서 컬렉션 모델을 사용하는 이유는 무엇입니까?백본 컬렉션에서 모델을 사용하는 이유
예 :
var model = Backbone.Model.extend({
url: '/rest/article/'
});
var collection = Backbone.Collection.extend({
url: '/rest/article',
model: model
});
가능한 중복 http://stackoverflow.com/questions/27448398/backbone-js-purpose-of-a-collection-with-a- 모델) –