我想过滤这样的选择:
<select ng-model="test" ng-options="c as c.label group by c.type for c in columns
| filter:{c.type:'!field'} | filter:{c.type:'!map'}"></select>
编辑:添加列模型:
Columns = [
{
name: "name",
label: "Label",
info: "Information displayed in help",
type: "type",
view: "html template",
style: "min-width: 10em;",
show: true
},
{
...
}
];
列用于多种操作并优化我的代码我需要它也在Select中,但没有类型为'field'或'map'的条目
然而,我可以选择所有内容,甚至是“字段”和“地图”类型的条目。 有干净的方法吗?
答案 0 :(得分:71)