0
其實我有我想動態改變數組循環的情況。* ngFor數組動態字符串插值
export interface City {
street: Street[];
country: Country[];
}
<div>
<div (click)="OnClick()">Street</div>
<div (click)="OnClick()">Country</div>
</div>
<div *ngIf="clicked">
<div *ngFor="let c of city.street">
<div>
{{c.name}}
</div>
</div>
</div>
如果用戶點擊街道,街道的值應循環。
預期:* ngFor = 「讓city.street的C」
如果全國用戶點擊,這個國家的價值觀應該循環。
預期:* ngFor =
我曾嘗試以下 「讓city.country的C」:
<div>
<div (click)="OnClick('street')">Street</div>
<div (click)="OnClick('country')">Country</div>
</div>
<div *ngIf="clicked">
//Porperty Binding
<div *ngFor="let c of city.{{onClickParameter}}">
<div>
{{c.name}}
</div>
</div>
</div>
它doenst工作(模板解析錯誤,因爲城市{{ }}) 是否有解決方案?
你可以通過移動'城市進一步簡化模板[所選]'成使用例如類一個屬性'get listOfThings(){return this.city [this.selected]; }' – jonrsharpe
這對我有效..我喜歡.. thx – mimu1011