<tr (click)="onRowClick(myDropDownList.value)">
<td>
<select #myDropDownList (click)="$event.stopPropagation()" (change)="onChange($event.target.value)">
<option *ngFor="let n of numbers" [value]="n">{{n}}</option>
</select>
</td>
</tr>
我试图从下拉列表中获取选定的值并将其分配给onRowClick
函数。但myDropDownList
由于某种原因似乎总是undefined
。我想知道这里可能出现什么问题。
答案 0 :(得分:2)
在这种情况下使用Forms或ngModel。 使用表单
模板
<form [formGroup]="test">
<div class="col-sm-6 form-group">
<label>Industry</label>
<tr (click)="onRowClick(myDropDownList.value)"> Click
<td>
<select #myDropDownList class="form-control select" formControlName="Industry">
<option [selected] = "true == true" [ngValue] = "0"> Please Select</option>
<option *ngFor="let industry of industries" [ngValue]="industry.id">{{industry.name}} </option>
</select>
</td>
</tr>
</div>
</form>
<强>组件强>
export class AppComponent implements OnInit {
name = 'Angular 5';
test:FormGroup;
industries = [{id:1,name:"rahul"},{id:2,name:"jazz"}];
ngOnInit(){
this.test = new FormGroup({
Industry:new FormControl('')
});
this.test.get('Industry').valueChanges.
subscribe(data =>
console.log(this.industries.filter(d => {return d.id == data}))
);
}
onRowClick(value){
console.log("called");
alert(value);
}
}
答案 1 :(得分:0)
更改您的下拉HTML,如下所示
<select [(ngModel)]="selectedNumber" (ngModelChange)="onRowClick()" >
<option *ngFor="let n of numbers" value={{n}}>{{n}}</option>
</select>
在TS文件中,您可以声明selectedNumber传递默认值,或者您可以使用内部onRowClick函数来获取所选数字
selectedNumber : number = 1;
onRowClick(){
console.log(this.selectedNumber)
}
您可以找到working version here
答案 2 :(得分:0)
我实际上最终使用ElementRef
作为解决方案,在我看来,这可能更简单,更直接。
@ViewChild('myDropDownList') myDropDownList: ElementRef;
onRowClick(){
const selectedValue = this.myDropDownList.nativeElement.value;
//...
}
在我的案例中使用表单有点矫枉过正。但是,谢谢你把它作为另一种可能的选择。
答案 3 :(得分:0)
您可以传递事件并检索event.target.value
<select id="accounts">
<option *ngFor="let account of accounts" [value]="account.value" (click)="selectAccount($event)">{{account.name}}</option>
</select>
selectAccount(event){
console.log(event.target.value)
}