gpt4 book ai didi

javascript - Angular : Sort by list of properties with mixed ASC and DESC

转载 作者:行者123 更新时间:2023-11-29 16:13:27 25 4
gpt4 key购买 nike

我有一个 ng-repeat,我正在尝试获取特定订单。我看到我可以使用属性列表进行排序:

ng-repeat="client in clients | orderBy: ['isOpen', 'lastAccessTime']"

我的问题是,如何配置升序和降序?

我希望在 isOpen 上使用 DESC 进行主要排序,在 lastAccessTime 上使用 ASC 进行次要排序。如何在我的 ng-repeat 中实现这一点?

编辑:我在下面尝试过,但是,当两个项目都是 isOpen 时,最高的 lastAccessTime 不在最上面:

ng-repeat="client in clients | orderBy: 'isOpen':true | orderBy: 'lastAccessTime'"

最佳答案

您可以在属性名称前加上+- 以指示升序或降序,如指定的in the documentation for orderBy .

关于javascript - Angular : Sort by list of properties with mixed ASC and DESC,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21473069/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com