我需要向 中添加两个选项ui-select
,而不是使用重复和数组,我认为如果在内部标记代码会更清晰<ui-select-choices>
(参见下面的示例)。但这不起作用,如果这有可能的话,有什么想法吗?
<ui-select ng-model="formula.value">
<ui-select-match>
<span ng-bind="$select.selected.name"></span>
</ui-select-match>
<ui-select-choices>
<span>AND</span>
<span>OR</span>
</ui-select-choices>
</ui-select>