我只是想知道只有最后三个插入钛的收藏品?
<View dataCollection="competence" dataFilter="filterFunction" height="Ti.UI.SIZE" layout="vertical" backgroundColor="gray" >
<Label backgroundColor='red' height="Ti.UI.SIZE" text="{date_debut}"/>
<Label backgroundColor='white' height="Ti.UI.SIZE" text="{date_fin}"/>
</View>
这个显示由'ASC'从id命令收集,我的目的只是显示最后三个元素。
我尝试使用dataFilter:
function filterFunction(collection){
// Underscore last method not working
return _.last(collection, 3);
}
你能帮帮我吗?谢谢。
答案 0 :(得分:1)
试试这个
function filterFunction(collection){
return _.last(collection.models, 3);
}