OrderBy boolean value with AngularJS ng-repeat

跟風遠走 提交于 2019-11-28 07:18:17

问题


I'd like to be able to sort by whether a variable is true or false.

Let's say we have a variable like so:

groups = {
    { name: 'first', value: true },
    { name: 'second', value: false },
    { name: 'third', value: true },
    { name: 'fourth', value: false }
}

And we can loop through it like so:

<div ng-repeat="group in groups">
    {{group.name}} {{group.value}}
</div>

Which will give you the following:

first true
second false
third true
fourth false

But if I wanted to sort by a boolean value then I could do this:

<div ng-repeat="group in groups | filter:{value:true}">
    {{group.name}} {{group.value}}
</div>
<div ng-repeat="group in groups | filter:{value:false}">
    {{group.name}} {{group.value}}
</div>

Which would give me the following output (which I want):

first true    
third true
second false
fourth false

Is there a way to do this using orderBy or filter in a single ng-repeat?


回答1:


orderBy accepts and sorts by booleans.

Order the repeated element by the the 'value' property of 'group':

ng-repeat="group in groups | orderBy: 'value'"

This will reverse the order:

ng-repeat="group in groups | orderBy: '-value'"

If you would like to also sort by the 'name' property of 'group':

ng-repeat="group in groups | orderBy: ['value','name']"



回答2:


use variable name instead obeject

orderBy:'Event':false

you will get the desired output like -

first true    
third true
second false
fourth false


来源:https://stackoverflow.com/questions/21378689/orderby-boolean-value-with-angularjs-ng-repeat

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!