<select>
ユーザーが異なる の間で値を更新できるようにするフォームでを使用したいと思います<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 には、myApp.services から updateOrder() を呼び出す updateOrder() があります。
私の問題は、フォームからバックエンドにデータを送信しようとしているとき<input>
です<select>
。
誰かがこれまたは同様の問題に遭遇しましたか? ご協力いただきありがとうございます!