如何使用@Input在角度2中传递多个嵌套级别组件的数据?

时间:2016-12-14 07:15:22

标签: javascript angular

我的代码结构如下所示

---ComponentA
------ComponentB
---------ComponentC
componentA.html代码中的

就像

<component-a [title]="abc"></component-a>

componentB.ts我的情况如下

  @Input title:string;

现在我需要在componentC.ts中获取它并且我在下面执行

@Input title:String //in this case it is coming **undefined**

我将如何在 componentC 中获取它。

感谢任何帮助。

由于

1 个答案:

答案 0 :(得分:0)

如果您想将abc作为字符串传递,请使用

<component-a title="abc"></component-a>

<component-a [title]="'abc'"></component-a>