嗨,我正在使用动态数据,使用该数据生成下拉列表,下面是我的下拉代码
<select #selHo (change)="onHoChange($event)">
<option *ngFor="let Ho of HDropDown" [value]= "Ho.id">
{{Ho.Name}}
</option>
</select>
这里我也想基于下拉选择执行操作,所以我写了更改,当发生更改时,它将是以下函数
public onHoChange(event): void {
this.cardDataHOTable(event.target.value) // this is will generate table
}
cardDataHOTable(data) {
this.serv.getCardMaster(data).subscribe(res => {
console.log(res);
});
}
下拉代码:
this.serv.loadDropdown(1).subscribe(res => {
console.log(res);
this.HDropDown = res;
});
我在构造函数
中加载它在这里,我面临的问题是ngonit()
我正在根据必须生成的表的下拉值加载下拉列表。在更改时,我能够执行任务,但我无法获得下拉列表的默认值,并且在初始化时我无法生成表格