I want to get a part of a list/collection from the server, something like this:
// Model
FileItem = Backbone.Model.extend({});
// Collection
FileList = Backbone.Collection.extend({
model: FileItem,
url: function() {
return '/me/file_list/' + this.id;
}
});
but this does not work. It seems that I cannot have dynamic urls in collection?
collection.urldoes not make any sense – Deeptechtons May 18 '12 at 4:58