作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一些数据:
0: {id: 1, name: "hhh", description: "hhh", isPopular: false,…}
1: {id: 2, name: "bbb", description: "bbb", isPopular: true,…}
2: {id: 3, name: "ccc", description: "ccc", isPopular: false,…}
3: {id: 4, name: "ddd", description: "ddd", isPopular: true,…}
4: {id: 5, name: "aaa", description: "aaa", isPopular: false,…}
5: {id: 6, name: "ggg", description: "ggg", isPopular: false,…}
我想出现在 ng-select 中:
Popular
bbb
ccc
The rest
aaa
ccc
ggg
hhh
所以我用过
<select ng-selected="true"
ng-options="category.name group by category.isPopular for category in ctrl.categories |
orderBy: ['-isPopular','name']"
ng-model="myModel.category">
</select>
然而这是返回:
aaa
ccc
ggg
hhh
true
bbb
ccc
如何标记组并按组排序?
最佳答案
group by
需要传入组名。例如:
<select ng-selected="true"
ng-options="category.name group by category.isPopular ? 'Popular' : 'The rest' for category in ctrl.categories |
orderBy: ['-isPopular','name']"
ng-model="myModel.category">
</select>
关于angularjs - 如何将 ng-select group by 用于 bool 值,以及订单和标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31341870/
我是一名优秀的程序员,十分优秀!