可以将选定的* ngFor数据显示到另一个页面吗?
例如
我有2页result.component.html
和details.component.html
result.component
正在使用* ngFor显示数据
details.component
正在显示result.component
任何想法?
答案 0 :(得分:0)
我认为你想要的是组件交互。在父组件中,您可以拥有* ngFor并且在* ng之内。您可以指定子组件,如下所示:
<div *ngFor="let data of allData">
<child-component inpData="data"></child-component>
</div>
和inpData可以在子组件中声明为@Input。
有关组件互动的详细信息,请参阅Angular - Component Interaction