[angularjs] AngularJs에서 날짜 필터를 기준으로 내림차순

<div class="recent" ng-repeat="reader in
    (filteredItems = (book.reader | orderBy: 'created_at' | limitTo: 1))">
</div>

따라서이 책은 나머지 API에서 나온 것이며 많은 독자들이 첨부되어 있습니다. ‘최근’독자를 얻고 싶습니다.

created_at필드에는 사용자를 최근으로 식별하는 값이 있습니다. 그러나 위의 코드는 나에게 가장 오래된 독자를 제공합니다. 따라서 순서를 뒤집어 야합니까? 내림차순으로 정렬하는 방법이 있습니까?



답변

설명서 에 따르면 reverse인수를 사용할 수 있습니다 .

filter:orderBy(array, expression[, reverse]);

필터를 다음으로 변경하십시오.

orderBy: 'created_at':true


답변

인수 앞에 접두사 orderBy‘-‘를 붙여 오름차순 대신 내림차순을 가질 수 있습니다. 나는 이것을 다음과 같이 쓸 것이다.

<div class="recent"
   ng-repeat="reader in book.reader | orderBy: '-created_at' | limitTo: 1">
</div>

이것은 필터 orderBy 에 대한 문서에도 명시되어 있습니다.


답변

아마도 이것은 누군가에게 유용 할 수 있습니다.

제 경우에는 몽구스가 설정 한 날짜를 포함하는 객체 배열을 얻었습니다.

나는 사용했다 :

ng-repeat="comment in post.comments | orderBy : sortComment : true"

그리고 함수를 정의했습니다.

$scope.sortComment = function(comment) {
    var date = new Date(comment.created);
    return date;
};

이것은 나를 위해 일했습니다.


답변

코드 예제 :

<div ng-app>
    <div ng-controller="FooController">
        <ul ng-repeat="item in items | orderBy:'num':true">
            <li>{{item.num}} :: {{item.desc}}</li>
        </ul>
    </div>
</div>

그리고 자바 스크립트 :

function FooController($scope) {
    $scope.items = [
        {desc: 'a', num: 1},
        {desc: 'b', num: 2},
        {desc: 'c', num: 3},
    ];
}

당신에게 줄 것이다 :

3 :: c
2 :: b
1 :: a

JSFiddle에서 : http://jsfiddle.net/agjqN/


답변

내림차순 정렬

날짜가있는 레코드를 내림차순으로 필터링하는 데 도움이됩니다.

$scope.logData = [
            { event: 'Payment', created_at: '04/05/17 6:47 PM PST' },
            { event: 'Payment', created_at: '04/06/17 12:47 AM PST' },
            { event: 'Payment', created_at: '04/05/17 1:50 PM PST' }
        ];

<div ng-repeat="logs in logData | orderBy: '-created_at'" >
      {{logs.event}}
 </div>


답변

필자의 경우 orderBy는 선택 상자에 의해 결정됩니다. 선택 옵션에서 정렬 방향을 다음과 같이 설정할 수 있기 때문에 Ludwig의 응답을 선호합니다.

        $scope.options = [
            { label: 'Title', value: 'title' },
            { label: 'Newest', value: '-publish_date' },
            { label: 'Featured', value: '-featured' }
        ]; 

마크 업 :

<select ng-model="orderProp" ng-options="opt as opt.label for opt in options"></select>
<ul>
    <li ng-repeat="item in items | orderBy:orderProp.value"></li>
</ul>


답변

w3schools 샘플 참조 :
https://www.w3schools.com/angular/angular_filters.asp
https://www.w3schools.com/angular/tryit.asp?filename=try_ng_filters_orderby_click

그런 다음 “reverse”플래그를 추가하십시오.

<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<body>

<p>Click the table headers to change the sorting order:</p>

<div ng-app="myApp" ng-controller="namesCtrl">

<table border="1" width="100%">
<tr>
<th ng-click="orderByMe('name')">Name</th>
<th ng-click="orderByMe('country')">Country</th>
</tr>
<tr ng-repeat="x in names | orderBy:myOrderBy:reverse">
<td>{{x.name}}</td>
<td>{{x.country}}</td>
</tr>
</table>

</div>

<script>
angular.module('myApp', []).controller('namesCtrl', function($scope) {
    $scope.names = [
        {name:'Jani',country:'Norway'},
        {name:'Carl',country:'Sweden'},
        {name:'Margareth',country:'England'},
        {name:'Hege',country:'Norway'},
        {name:'Joe',country:'Denmark'},
        {name:'Gustav',country:'Sweden'},
        {name:'Birgit',country:'Denmark'},
        {name:'Mary',country:'England'},
        {name:'Kai',country:'Norway'}
        ];

    $scope.reverse=false;
    $scope.orderByMe = function(x) {

        if($scope.myOrderBy == x) {
            $scope.reverse=!$scope.reverse;
        }
        $scope.myOrderBy = x;
    }
});
</script>

</body>
</html>