我的代码结构如下所示
---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 中获取它。
感谢任何帮助。
由于
答案 0 :(得分:0)
如果您想将abc
作为字符串传递,请使用
<component-a title="abc"></component-a>
或
<component-a [title]="'abc'"></component-a>