是否可以从子组件访问父组件ngOnInit方法?

时间:2019-05-04 15:12:01

标签: angular

我正在尝试从另一个组件访问一个组件ngOnint方法。但是我收到“无法读取未定义的属性'ngOnInit'”错误。我该如何解决?

1 个答案:

答案 0 :(得分:0)

您需要知道如何将数据从一个组件传递到另一个组件, 例如,将数据从父级传递到子级,您必须在这里使用装饰器@Input一个解释明确的示例https://angular.io/guide/component-interaction#pass-data-from-parent-to-child-with-input-binding, 如果要将数据从孩子传递给父母,则必须在这里使用装饰器@Output
https://angular.io/guide/component-interaction#parent-listens-for-child-event