目前,我无法使用orderBy
- 过滤器对列表中的列进行排序。我的问题是嵌套的ngRepeat。
查看:
<md-list>
<md-list-item>
<span ng-repeat="item in ::hItems track by $index" ng-click="sortBy(item)" flex>
{{ ::item }}
</span>
</md-list-item>
<md-divider></md-divider>
<md-list-item ng-repeat="cItem in ::cItems | orderBy:sortType:sortReverse track by $index">
<span ng-repeat="(key, value) in ::cItem track by $index" flex>
{{ ::value }}
</span>
<md-divider></md-divider>
</md-list-item>
</md-list>
用户单击列标题后,将调用函数sortBy
。该功能在控制器中实现如下:
//Default values:
$scope.sortType = 'NAME';
$scope.sortReverse = false;
var orderBy = $filter('orderBy');
//sortBy func:
function sortBy(columnKey) {
$scope.sortType = columnKey;
$scope.sortReverse = !$scope.sortReverse;
$scope.cItems = orderBy($scope.cItems, $scope.sortType, $scope.sortReverse);
}
该列表仅按默认值name
排序。这是GET-request的数组输出:
//JSON data
[
{
"ArtNo": "DE123",
"SHORTCODE": "ABC",
"NAME": "article one",
"QUANTITY": 3,
"GROUPID": 1,
"ACTIVE": 1
},...
]
所以,我需要嵌套的ngRepeat,因为你如何看到数组是用键号和对象值定义的=&gt; [0:Object, 1:Object...]
。我只需要一个我sortBy
函数的解决方案。有人有想法吗?
以下是我的输出列表:
ArtNo | SHORTCODE | NAME | QUANTITY
DE123 | ABC001 | article one | 3
DE456 | ABC002 | article two | 8
DE789 | ABC003 | article three | 4
DE321 | ABC004 | article four | 13
....
答案 0 :(得分:1)
如果我理解正确,你想要这种行为:
右?
那你为什么要两次订购你的阵列?
//Default values:
$scope.sortType = 'NAME';
$scope.sortReverse = false;
var orderBy = $filter('orderBy');
//sortBy func:
function sortBy(columnKey) {
$scope.sortType = columnKey;
$scope.sortReverse = !$scope.sortReverse;
// You do not need to order anything here. Just define your orderby parameters here to be used on view.
}
与问题作者交谈时,我们确实找到了主要问题:
在::
上使用ng-repeat
语法可以避免角度观看OrderBy
过滤器上的更改,因此更改并未反映在视图上。