我试图弄清楚如何使用Angular 5进行链式选择。这是我到目前为止所做的。第一个select
起作用,第二个起作用不起作用。
<select [ngModel]="selectedTag" (change)="tagChanged()" [disabled]="!element.checked">
<option *ngFor="let tag of tags">
{{tag}}
</option>
</select>
<select multiple="multiple" class="stations">
<option *ngFor="let station of stationsByTag()">
{{station}}
</option>
</select>
我认为stationsByTag()
只被调用一次。
答案 0 :(得分:0)
我不知道stationsByTag()的样子,但你可能需要在组件选中时设置currentTag并根据它更新stationsByTag。