我需要重複的部件的另一組件內,讓我們說:* ngFor沒有內部NG-內容包裝
組分A只接受,它的NG-裏面的內容,類型B.
的一個組成部分做是這樣的:
<component-a>
<ng-template ngFor [ngForOf]="items">
<component-B></component-B>
</ng-template>
</component-a>
或本:
<component-a>
<ng-container *ngFor="let item of items">
<component-B></component-B>
</ng-container>
</component-a>
不工作...
我不能修改組件的一個也不compoenent-B和這些方法並沒有呈現組件-B ...
任何想法如何克服呢?
謝謝。
PS:我可能需要爲每個項目添加多個組件B.
難道你不是指'ng-container'而不是'ng-template'嗎?我寫了差異,因爲我一直搞錯了:https://blog.jonrshar.pe/2017/May/20/angular-ng-elements.html – jonrsharpe
將數組作爲參數傳遞給內部組件,在內部組件的模板。 – omeralper
編輯的問題。我無法修改組件-b。 –