0
<select ng-model="field.value" class="form-control" ng-attr-name="{{name}}">
<option selected="selected">{{field.fieldName}}</option>
<option ng-repeat="app in field.attributes.split(',')" value="{{app}}">{{app}}</option>
</select>
在此代碼中,我的預期行爲是,它會顯示選擇框,並選擇我已添加的第一個選項selected =「selected」。爲什麼angular-js ng選項不顯示爲選中狀態?
但它沒有選擇「selected」屬性元素。
我也試過這與ng-selected =「true」。這對我也沒有幫助。對我有什麼建議?
您可以使用將第一個值顯示爲選中 – Abhishekkumar
@Abhishekkumar,它對我很有用。無論如何,tymeJV解決方案工作:) –