我有任何速度数组也有重复值。我想创建一个具有唯一值的数组,其中所有值都根据它们在原始数组中的计数/频率进行排序。
例如:
#set($y = 0)
#set ($pagelist = [])
#foreach($label in $page.labels)
#set($pinnedPages = $repository.getContentByLabel("$!label"))
#set($currentpage = $page)
## Display the page that has a label that matches current page label.
#foreach($page in $pinnedPages)
#if($page != $currentpage)
## Display the page name as a list item.
#set ($pagelistswallow = $pagelist.add($page.title))
<li>$pagelist.get($y)</li>
#set($y = $y + 1)
#end
#end
#end
pagelist数组具有页面名称,其中很少出现在该数组中多次出现。我需要一个具有唯一页面名称的数组,该数组按照它们在原始页面列表数组中的频率顺序进行排序。
任何人都可以帮忙吗?我试过了,但我的代码不起作用......