0
的內容投影在角模板如何引用一個迭代變量中角分量
<component>
<span *ngFor="let entity of entities">{{entity.name}}</span>
</component>
我有以下的,並希望重組它看起來像
<component [entities]="entities">
<span>{{entity.name}}</span>
</component>
迭代會發生在組件的模板中。我如何引用當前實體幷包含實體集合的每次迭代的預計內容?
這是孩子嗎?或者這個''標籤指的是什麼? –
Alex
爲什麼你想要內容項目呢。你可以在子組件內迭代它 – Aravind