我需要多次加载一个动态组件并根据某个值动态传递数据,以便它将加载运行时数据。
我试过下面的例子 https://dzone.com/articles/how-to-dynamically-create-a-component-in-angular
根据示例,我们有一个具有“消息”属性的 messageComponent,在 hostComponent 中,我们在 html 文件中添加一个模板,例如
<div style="text-align:center">
<h1>
Welcome to {{ title }}!
</h1>
<template #messagecontainer>
</template>
</div>
所以在模板标签的地方,我们的 messageComponent 将被替换。
我需要一些东西,比如我们可以多次迭代这个模板,并在 messageComponent 中动态传递不同的“消息”值。