AngularJS orderby integer field not working properly

假如想象 提交于 2019-11-29 18:25:38

问题


I just took the simplest demo from http://docs.angularjs.org/api/ng.filter:orderBy and just change the value of age to have different number of digit. It stop working as it expected. Its ordering like "string" not as "integer" value. How should i change it so that it order by age like integer value?

Plunkr demo is here http://plnkr.co/edit/pzgiIYrki7jUZdVaTMt9?p=preview

Codes are:

function Ctrl($scope) {
  $scope.friends =
      [{name:'John', phone:'555-1212', age:'2352345'},
       {name:'Mary', phone:'555-9876', age:'4235243'},
       {name:'Mike', phone:'555-4321', age:'241'},
       {name:'Adam', phone:'555-5678', age:'34325'},
       {name:'Julie', phone:'555-8765', age:'1234'}]
  $scope.predicate = '-age';
}


<!doctype html>
<html ng-app="App">
  <head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.0-rc.2/angular.min.js"></script>
<script type="text/javascript" src="script.js"></script>
</head>
  <body>

<div ng-controller="Ctrl">
  <pre>Sorting predicate = {{predicate}}; reverse = {{reverse}}</pre>
  <hr/>
  [ <a href="" ng-click="predicate=''">unsorted</a> ]
  <table class="friend">
    <tr>
      <th><a href="" ng-click="predicate = 'name'; reverse=false">Name</a>
          (<a href="" ng-click="predicate = '-name'; reverse=false">^</a>)</th>
      <th><a href="" ng-click="predicate = 'phone'; reverse=!reverse">Phone Number</a></th>
      <th><a href="" ng-click="predicate = 'age'; reverse=!reverse">Age</a></th>
    </tr>
    <tr ng-repeat="friend in friends | orderBy:predicate:reverse">
      <td>{{friend.name}}</td>
      <td>{{friend.phone}}</td>
      <td>{{friend.age}}</td>
    </tr>
  </table>
</div>


  </body>
</html>

回答1:


you have to convert age to type Number to make to orderBy to work as it should.

Add to your controller to sort String age as float:

   angular.forEach($scope.friends, function (friend) {
    friend.age = parseFloat(friend.age);
   });

It should work,

See PLunker




回答2:


I know is a little late for this answer, but in the newest version of Angular, you can use a function as the orderBy's predicate (https://docs.angularjs.org/api/ng/filter/orderBy). In this case, add to the controller a function like next

$scope.orderByFunction = function(friend){
    return parseInt(friend.age);
};

and change the predicate in the orderBy filter

ng-repeat="friend in friends | orderBy:orderByFunction:reverse"

This will do the trick!




回答3:


You just have to remove quotes in age variable because it's an integer, not a string:

  $scope.friends =
      [{name:'John', phone:'555-1212', age:2352345},
       {name:'Mary', phone:'555-9876', age:4235243},
       {name:'Mike', phone:'555-4321', age:241},
       {name:'Adam', phone:'555-5678', age:34325},
       {name:'Julie', phone:'555-8765', age:1234}]



回答4:


AngularJs have in built functionalities to sort the values.But before sorting float values we need to convert the values to float using the parseFloat() javavscript function .

http://hubpages.com/technology/How-to-sort-table-content-filter-table-data-and-add-pagination-using-Angular-JS




回答5:


Changing your predicate to the following will also work:

<th><a href="" ng-click="predicate = '1*age'; reverse=!reverse">Age</a></th>



回答6:


Add JSON_NUMERIC_CHECK code while converting array into json. json_encode($anyarray,JSON_NUMERIC_CHECK);



来源:https://stackoverflow.com/questions/19175054/angularjs-orderby-integer-field-not-working-properly

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