我对angularjs是新手。我一直在尝试实现一个多级下拉列表,希望最后一个下拉列表的值出现在输入框中。到目前为止,我只得到了id,而没有得到实际的文本。
我需要像这样的东西吗 $scope.change
要将id更改为名称吗?
我一直在使用这段代码作为起点https://codepen.io/aliadravi/pen/vobeya.
这是我更改的代码部分:
<div class="form-group">
<label for="city" class="col-sm-2 control-label">City </label>
<div class="col-sm-7">
<select ng-model="customer.City"
ng-options="x.Id as x.city for x in cities"
class="form-control"
ng-required="true"
id="city">
<option value="">-- Choose City --</option>
</select>
<label for="selectedCity" class="col-sm-2 control-label">Selected City</label>
<input type="text" data-ng-model="customer.City">
</div>
谢谢你的指导!
暂无答案!
目前还没有任何答案,快来回答吧!