我的数组是:BS
。其结构是:
Array[317]
0: Object
$$hashKey: "022"
name: "Los Angeles Comm."
.
.
.
..
BS是一个数组。每个值都是带有名称字段的JSon对象。
我想根据他们的名字对BS的所有值进行排序。我在尝试:
<option ng-repeat="item in BS | orderBy:item.name" value="{{item.name}}">{{item.name}}</option>
我也尝试过:orderBy:name
和orderBy:item[name]
。什么都行不通。为什么这不起作用,是什么代码正确?
答案 0 :(得分:79)
看看下面的html
<!DOCTYPE html>
<html ng-app="app">
<head>
<title></title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.5/angular.min.js"></script>
</head>
<body>
<div ng-controller="item">
<ul>
<li ng-repeat="item in items|orderBy:'name'">
{{item.name}}
</li>
</ul>
</div>
<script>
var AppModule = angular.module('app', []);
function item($scope) {
$scope.items = [{ name: 'tur' }, { name: 'abc' }, { name: 'xyx' }];
}
</script>
</body>
</html>