admin管理员组文章数量:1345057
I'm using Angular JS and Google Places API to build an web app.
I have an ng-repeat which is currently being ordered by "rating" descending(orderBy:'-rating'). So it will list x places from the Google Places API JSON file in the descending order based on the rating.
HOWEVER, items/places that don't have a rating are classed as null and these entries are shown at the top of my ng-repeat feed. These should go to the bottom of the feed as they don't have a rating?
So an example of how i'd like this it to look is:
<ng-repeat orderBy:'-rating'>
<place rating="5"/>
<place rating="4.2"/>
<place rating="2.8"/>
<place rating="null"/>
<place rating="null"/>
</ng-repeat>
What's the best way of going about this?
I'm using Angular JS and Google Places API to build an web app.
I have an ng-repeat which is currently being ordered by "rating" descending(orderBy:'-rating'). So it will list x places from the Google Places API JSON file in the descending order based on the rating.
HOWEVER, items/places that don't have a rating are classed as null and these entries are shown at the top of my ng-repeat feed. These should go to the bottom of the feed as they don't have a rating?
So an example of how i'd like this it to look is:
<ng-repeat orderBy:'-rating'>
<place rating="5"/>
<place rating="4.2"/>
<place rating="2.8"/>
<place rating="null"/>
<place rating="null"/>
</ng-repeat>
What's the best way of going about this?
Share Improve this question asked Apr 22, 2016 at 13:36 Dayle SalmonDayle Salmon 2812 silver badges11 bronze badges 1- Check out this answer stackoverflow./questions/18604374/… – DrinkBird Commented Apr 22, 2016 at 13:39
1 Answer
Reset to default 12To sort with null
or undefined
value using orderBy
filter. use []
notation orderBy:[ '!rating', '-rating', ]
.
That will show null
or undefined
value at the bottom.
like:
<li ng-repeat="option in options | orderBy:[ '!rating', '-rating', ]">{{option.name}}</li>
If you want only null values to go to the bottom you can use:
orderBy: [ 'rating === null', '-rating' ]
For all falsy values except 0 you can do:
orderBy: [ 'rating !== 0 && !rating', '-rating' ]
本文标签: javascriptAngularJS OrderBy Descending (null entries)Stack Overflow
版权声明:本文标题:javascript - AngularJS: OrderBy Descending (null entries) - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743792745a2539878.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论