1
我需要在ui-select
中添加兩個選項,而不是使用repeat和數組,我認爲如果代碼在<ui-select-choices>
(請參見下面的示例)中標記,則代碼更清晰。但它不起作用,如果這是可能的任何想法?ui-select無ng-repeat
<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>