2
匹配 我試圖從其所有包含的模型中獲得骨幹集合中較大的屬性。骨幹 - 來自集合的更大模型屬性
舉個例子:
App.Models.Example = Backbone.Model.extend({
defaults: {
total: 0,
created_at: '0000-00-00',
updated_at: '0000-00-00'
}
});
App.Collections.Examples = Backbone.Collection.extend({
model: App.Models.Example,
url: 'examples'
});
var examples = new App.Collections.Examples();
examples.sync();
我需要得到的,是更大的created_at領域。
我該怎麼做?
謝謝!