在AngularJs中的ng-options中使用orderBy

时间:2015-05-17 12:54:39

标签: javascript angularjs

我确实有以下形式的对象:

item = {key1: {count: x}} where x is an integer

我想使用count在我的模板中对我的选项进行排序。 我正在以下列方式使用ng-options:

data-ng-options="key1 for (key1, sub_item) in item | orderBy: 'sub_item.count'"

不幸的是,排序不起作用。知道我怎么能做到这一点?

1 个答案:

答案 0 :(得分:0)

根据docs,您必须在引号中设置orderBy值:

orderBy: 'sub_item.count'