angularjs ng-repeat ordering string arrays in numerical order

前端 未结 2 1598
慢半拍i
慢半拍i 2021-01-03 12:02

I have a list of post with ids like 1,2,3,4,5,6,7,8,9,10,11,12 (json format) The ids are of type String. But I would like to order it according to its numerical

相关标签:
2条回答
  • 2021-01-03 12:23

    Ideally it should Print the correct list in ng-repeat using order-by. I am adding a fiddle example with the same.Its a basic example. Hope it helps

    >  http://jsfiddle.net/L45cE/
    
    0 讨论(0)
  • 2021-01-03 12:26

    I guess your ids are strings. A simple solution would be use a no. operation inside order by. So instead ofr orderBy:'id' just use orderBy:'id*1' this will consider the id as no. and sort it according to the numerical order.

    This is all you need - <div ng-repeat="fiche in fiches | orderBy:'id*1'">{{fiche.id}}</div>

    Demo: http://plnkr.co/edit/MSrPTZQP49F7Nzwhv6ef?p=preview

    0 讨论(0)
提交回复
热议问题