角度显示数据* Ng详情

时间:2018-01-17 09:29:44

标签: angular ngfor

可以将选定的* ngFor数据显示到另一个页面吗? 例如 我有2页result.component.htmldetails.component.html

result.component正在使用* ngFor显示数据 details.component正在显示result.component

的数据详情

任何想法?

1 个答案:

答案 0 :(得分:0)

我认为你想要的是组件交互。在父组件中,您可以拥有* ngFor并且在* ng之内。您可以指定子组件,如下所示:

<div *ngFor="let data of allData">
    <child-component inpData="data"></child-component>
</div>

和inpData可以在子组件中声明为@Input。

有关组件互动的详细信息,请参阅Angular - Component Interaction