我得到一個JSON值從一個WebService的這樣數據不被降下來填充從JSON響應從靜止在角JS
「電」:
{「selectedElectricityBoard」:」 ABCD」,
「electrictyConsumerNumber」: 「12345」,
「isElectricityBoardChecked」:真
}
我從JSON數據生成一個下拉列表,然後我選擇值並提交值,價值從我的用戶界面成功提交,現在的情況是我編輯相同的表單爲此,我正在進行一次Web服務調用,該調用返回的值與我從UI中選擇的值相同,但所選值未在下拉菜單中填充/反映,任何建議或幫助都將非常可觀,我的UI是JS角,代碼片段如下:
<div class="col-xs-2 no-padding ">
<label>Consumer No.:</label>
</div>
<div class="col-xs-3">
<span ng-hide="true" class="form-control" ng-required="true"
close-text="Close">
</span>
<div class="group-3-text-boxes col-xs-3 no-padding" style="min-width: 100px;">
<input type="text" name="consumer_number"
ng-disabled="!form_data[selectedTab].electricity.isElectricityBoardChecked"
ng-model="form_data[selectedTab].electricity.electrictyConsumerNumber"
class="input-field"
ng-class="{true:'invalid-field',false:''}
form_data[selectedTab].electricity.isElectricityBoardChecked && form_data[selectedTab].invalid.electricity]" required />
哪裏是在你的代碼下拉? –