码迷,mamicode.com
首页 > Web开发 > 详细

angularjs ng-repeat倒叙

时间:2017-02-25 16:48:27      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:orderby   java   script   control   class   turn   name   custom   function   

<div ng-app="myApp" ng-controller="customersCtrl">
 
<table>
  <tr ng-repeat="x in names|orderBy:‘Country‘| reverse">
    <td>{{ x.Name }}</td>
    <td>{{ x.Country }}</td>
  </tr>
</table>
</div>

  上面的reverse是自定的过滤器!

app.filter(‘reverse‘, function() {
    return function(items) {
        return items.slice().reverse();
    };
});

  reverse()是js提供的倒叙方法

angularjs ng-repeat倒叙

标签:orderby   java   script   control   class   turn   name   custom   function   

原文地址:http://www.cnblogs.com/luoyingfeng/p/6442025.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!