Titanium返回最后三个插入的集合

时间:2016-06-17 12:03:57

标签: titanium appcelerator titanium-mobile titanium-alloy appcelerator-titanium

我只是想知道只有最后三个插入钛的收藏品?

<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);
	
}

你能帮帮我吗?谢谢。

1 个答案:

答案 0 :(得分:1)

试试这个

function filterFunction(collection){
    return _.last(collection.models, 3);
}