<select [(ngModel)]="country" (change)="stateList = getStateList(country)">
<option *ngFor="let c of countryList" [value]="c.Country.CountryID"></option>
</select>
在 (ngModelChange) 中,我想将从 getStateList() 返回的值分配给一个变量,但它只是调用函数并且返回值未绑定到变量。
<select [(ngModel)]="country" (change)="stateList = getStateList(country)">
<option *ngFor="let c of countryList" [value]="c.Country.CountryID"></option>
</select>
在 (ngModelChange) 中,我想将从 getStateList() 返回的值分配给一个变量,但它只是调用函数并且返回值未绑定到变量。