我想<select>
在表单中使用 a 让用户能够在不同的<option>
. 我在这里使用了指南中的技术:https ://angular.io/docs/ts/latest/guide/forms.html 。这是我正在谈论的示例:
<div class="form-group">
<label for="type">Type :</label>
<select class="form-control" [(ngModel)]="order.type" ngControl="type">
<option *ngFor="#type of types" [value]="type">{{type}}</option>
</select>
</div>
在我的 order-details.component 中,我有一个 updateOrder(),它从 myApp.services 调用 updateOrder()。
我的问题是当我试图将数据从表单发送到后端时:所有带有 an 的部分<input>
都可以,但不是那些<select>
(它返回原始值,而不是选择的那个)。
有没有人遇到过这个或类似的问题?谢谢你的帮助!