3
我正在使用AngularJS從我的控制器中的對象數組中動態填充我的選擇選項內容。我的對象有一個名爲userProfileName的屬性。Angular ng-options刪除空白選項並僅選擇第一個選項
怎麼可能刪除我在頂部的空白選項?
此外,我想要選擇第一個配置文件配置文件1默認情況下。如何才能做到這一點?
我的代碼段是在這裏:
<select id="requestorSite"
ng-model="selectedUserProfile"
ng-options="userProfile.userProfileName for userProfile in userProfiles"
ng-selected=""
class="form-control displayInlineBlock width40per marginLeft15">
</select>
我的控制器具有
$scope.userProfiles
作爲對象的陣列,並且每個對象具有用戶配置文件名屬性。
下面是截圖:
我想在頂部去除空白選項,默認情況下也簡介1選擇有。
感謝, ANKIT
這解決了我選擇的問題:) –
現在我正在尋找空白選項問題 –
空白選項的問題?這段代碼把值放在select中,但是他也放了一個默認值,這樣空白的問題就可以解決了。請告訴我們你的代碼。 – carton