0
可否請你告訴我如何在UI選擇中設置默認值。 這裏是我的代碼 http://plnkr.co/edit/tCrEM4oC9iMSYZffbEAX?p=preview 我想「阿德里安」應該選擇作爲默認.could請你告訴我如何設置阿德里安年齡典範(21)的默認值?如何選擇ui select的默認值?
<ui-select tagging tagging-label="new tag" multiple ng-model="model.multipleDemo" theme="select2" ng-disabled="disabled" style="width: 300px;">
<ui-select-match placeholder="Select colors...">{{$item.name}}</ui-select-match>
<ui-select-choices repeat="color.age as color in people | filter:$select.search">
{{color.name}}
</ui-select-choices>
</ui-select>
<p>Selected: {{model.multipleDemo}}</p>