我有一個組分與* ngFor打印在其他組件中定義的一些像這樣的盒子,其中:通行證數據角2
<div>
<commponentB *ngFor="let a of list"></componentB>
</div>
其中「列表」是這樣的列表確定對象:
this.list=[{"id":"3","nome":"app3","posizione":3},{"id":"1","nome":"app1","posizione":1},{"id":"2","nome":"app2","posizione":2}];
我必須填充所有組件。我怎樣才能從這兩個組件傳輸數據?
TY
EDIT1:
的問題是,該列表分裂成2列表重複在2分不同的自舉列這樣的情況是這樣的:
<div>
<commponentB *ngFor="let a of list1"></componentB>
</div>
<div>
<commponentB *ngFor="let a of list2"></componentB>
</div>
和組件是這樣的:
<div>
<span>{{name}}</span>
</div>
如果我通過所有的列表我不知道如何將組件置於正確的位置(對不起,如果我沒有很好地解釋問題)
我試着像你說的,但問題有點不同 – Daveus