AngularJS - orderBy投票计数

时间:2016-06-01 13:21:45

标签: angularjs angularjs-orderby variable-length

<a ui-sref="detail({id: post._id})" ng-if="post" ng-repeat="post in posts |
 orderBy : post.votes.length | limitTo:10" class="list-group-item">
        <div class="row">
            {{post.votes.length}}
            <div class="col-md-12">
                <h5 class="no-margin-top"><span class="glyphicon glyphicon-{{post.type}}-sign"></span> <strong>{{post.birdname}}</strong></h5>
            </div>
            <div class="col-md-4">
                <div class="thumbnail no-border no-margin-bottom"> 
                    <img ng-src="{{post.picture}}" alt="bird"/>
                </div>
            </div>
            <div class="col-md-6">
                <h5>&#160;<span class="fa fa-map-marker"></span> {{post.place}}</h5>
                <h5>&#160;<i class="fa fa-user"></i> {{post.author}}</h5>
                <h5>&#160;<i class="fa fa-clock-o"></i> <span am-time-ago="post.created_at"></span></h5>
            </div>
        </div>
        <hr />
    </a>

在尝试post.votes.length时,我获得了对该特定帖子所做的投票数(喜欢),并且我正在尝试从大多数投票到最少投票。

在我的控制器中,我只是检索所有帖子并将它们返回到部分:

app.controller('dashboardCtrl', ['$scope', '$http', 'postApi', function($scope, $http, postApi){
    $scope.posts = [];
    $scope.pageSize = 4;
    $scope.currentPage = 1;

    postApi.getAllPosts()
        .then(function(res) {
            $scope.posts = res.data.filter(function(posts) {
                return posts;
        });
    });
}]);

但是ng-repeat并没有按最高值排序。为了确保它正在传递数量,我在右下方做了{{post.votes.length}},这确实正确计算了数量。

投票是帖子中的一个数组,其中包含所有投票的ID(与参考相关联),如下所示:

{
"_id": "574ddaab594d3e6514ddf6e7",
"created_at": "2016-05-31T18:40:43.727Z",
"author": "Author",
"userId": "154815165165",
"body": "body",
"type": "ok",
"__v": 32,
"votes": [
"574ede99277c97a810379328",
"574ee07b277c97a81037932a"
],
"comments": []
}

因此,您可以在上面看到标识为574ddaab594d3e6514ddf6e7的帖子有2个“赞”也称为投票。 让我们以此为例:如果所有其他帖子都有1票,但这个帖子有2票,我想在最高点上显示此票。

2 个答案:

答案 0 :(得分:1)

您只需在ng-repeat

中添加以下过滤器
ng-repeat="post in posts |  orderBy : 'votes.length' : true | limitTo:10"

而不是

ng-repeat="post in posts | orderBy : post.votes.length | limitTo:10"

Click here to show example in codepen

答案 1 :(得分:-1)

<a ui-sref="detail({id: post._id})" ng-if="post" ng-repeat="post in posts |
  orderBy : -post.votes.length | limitTo:10" class="list-group-item">

如果我理解正确,这可能会起作用