如何从子组件的父组件中获取变量?
app.component
secret: string = '123'
child.component
@Input() secret;
console.log(this.secret);
=> undefined
每个示例仅显示模板绑定,例如[secret]="secret"
如何仅从子组件访问父组件的数据?
答案 0 :(得分:2)
尝试使用父级HTML(在其中使用子级组件的位置)中的属性绑定进行尝试,如下所示:
<child [secret]="secret"><child>