配合 我试图从所有包含的模型中获得骨干集合的更大属性。
举个例子:
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字段。
我怎么能这样做?
谢谢!
答案 0 :(得分:0)
我认为您要求从集合中具有最新created_at
日期的集合中检索模型?
如果是这样,你使用下划线max函数,如下所示:
var mostRecentDateModel = examples.max(function(model){
return model.get("created_at");
});
// this prints the most recent date that you are after
console.log(mostRecentDateModel.get("created_at"));
您需要记住,如果模型的created_at
属性不是JavaScript日期(可能是字符串),max
函数可能无法返回您期望的内容。所以可能值得确保它真的是一个日期和/或将其转换为一个日期。
希望这有帮助