我有两个Angular组件checklist-page
和checklist
。
checklist-page
从后端下载数据
我想在checklist
组件中多次使用checklist-page
组件。
我想在checklist-page
个组件中使用checklist
的下载数据。
转折点是,我无法选择基本的父子组件嵌套方式,因为我想以此方式自定义每个checklist
实例的参数:
<checklist-page [type]='locations'>
<checklist [checklistData]="parentComponentData" [filter]='visited'>
<checklist [checklistData]="parentComponentData" [filter]='remaining'>
<checklist [checklistData]="parentComponentData" [filter]='visited' [userId]=123>
<checklist [checklistData]="parentComponentData" [filter]='visited' [userId]=234>
<checklist [checklistData]="parentComponentData" [filter]='remaining' [userId]=456>
<checklist [checklistData]="parentComponentData" [filter]='remaining' [userId]=456>
.
.
.
</checklist-page>
因此,简而言之,我不确定checklist-page
模板的内容是什么,它可能会有所不同。
在这种情况下如何将数据从checklist-page
传递到checklist
?
答案 0 :(得分:0)
您可以使用此链接中的一种方法。我更喜欢一种服务 https://angularfirebase.com/lessons/sharing-data-between-angular-components-four-methods/
答案 1 :(得分:-1)
您可以使用动态组件加载程序https://angular.io/guide/dynamic-component-loader。