Angular 2 RC5 - 在outlet-router

时间:2016-08-28 05:15:58

标签: angular routing

我有下一个文件夹

  • COMPONENT1
  • COMPONENT2
    • children1
    • children2
    • children3

在component2中,我有一个变量,其中包含三个子组件所需的所有信息,子项只显示信息,但使用不同的模板,我不想在三个组件中使用相同的变量。

1 个答案:

答案 0 :(得分:0)

您的组件应与外部环境隔离,因此如果您不想通过输入传递它们,可以将它们放入与component2相关的 service ,然后注入每个组件

结构将是这样的:

  • component1_folder
    • COMPONENT1
  • component2_folder
    • COMPONENT2
    • component2_service
    • children1
    • children2
    • children3