我想通过按下按钮对编号列表进行排序,但过滤器应该保持使用状态。订单并不重要。我的愿望只是以不同的方式对其进行排序。我在这里找到一个例子来对列表“http://jsfiddle.net/abdennour/SjWXU/”进行排序,但是我没有办法将它用于我在玉器中的列表。也许有人可以帮助我使用按钮和代码。 要获得列表创意的印象: http://www.oldie-ponderosa.de/sort.png 我在index.jade中的代码:
block content
ol#actions(data-role="listview",data-filter="true", data-filter-placeholder="Filter", data-inset="true")
- each action in actions
li(id=action._id)
a(href="/edit/#{action._id}")
h3= action.subject
p
span= action.part1
span ,  
span= action.part2
span ,  
span= action.part3
span ,  
a(href="/delete/#{action._id}",data-theme="a", data-icon="delete") Delete
答案 0 :(得分:0)
each article in page.articles.reverse()
只需使用.reverse(),这是一个js函数。 jade是一个js程序。