私の配列は :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]
。何も機能しません。これが機能しないのはなぜですか?正しいコードは何ですか?