0
這是我的代碼。我使用了角度UI選擇。它運作良好。但是現在,只有一次選擇下拉菜單的需求發生了變化。我使用限制屬性,但它不工作。ui選擇與單選(限制屬性不起作用)
<span id="oCountriesSpan" ng-class="{'has-error': noCountriesSelected()}">
<ui-select multiple limit="1" ng-model="countryModel.selectedCountries" ng-disabled="isReadOnly" theme="bootstrap">
<ui-select-match placeholder="Select ..." allow-clear="true">{{$item.name}}
</ui-select-match>
<ui-select-choices repeat="country.id as country in countryCodes | filter:$select.search">
{{ country.name }}
</ui-select-choices>
</ui-select>
</span>
有沒有其他的辦法限制選擇只有一個? – tv3free