2017-07-13 15 views
2

以下は私の.htmlコードです。クリックボタン角度2の選択ボックスの値を取得

<select class="form-control" id="location" required [(ngModel)]="locations" name="location" #location="ngModel"> 
     <option *ngFor="let location of locationType.locations" [value]="location.city_id" >{{location.city_name}}</option> 
</select> 

    <button (click)='getFilterDetails(locations)'>Search</button> 

と下のクリックボタン

getFilterDetails(data){ 

にconsole.log(データ)を選択ボックスからデータを取得し、私の.TSファイルのコードです。 }

クリックしたときに選択ボックスの価値を得る方法を教えてください。

答えて

0

あなたはそれがうまく働いてSajeetharan-- @ ngModel、

getFilterDetails(){ 
    console.log(this.locations); 
} 
+1

を使用しているので、あなたは直接値を得ることができます。それは魅力のように働く –

関連する問題