来自子组件的角度访问父变量

时间:2018-06-27 21:23:57

标签: angular typescript

如何从子组件的父组件中获取变量?

app.component

secret: string = '123'

child.component

@Input() secret;

console.log(this.secret);
=> undefined

每个示例仅显示模板绑定,例如[secret]="secret"

如何仅从子组件访问父组件的数据?

1 个答案:

答案 0 :(得分:2)

尝试使用父级HTML(在其中使用子级组件的位置)中的属性绑定进行尝试,如下所示:

<child [secret]="secret"><child>