标签: 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'"
不幸的是,排序不起作用。知道我怎么能做到这一点?
答案 0 :(得分:0)
根据docs,您必须在引号中设置orderBy值:
orderBy
orderBy: 'sub_item.count'