如何从Angular2中的父指令侦听子事件

时间:2016-06-13 03:46:14

标签: angular

我有一个子组件' my-component'这是由指令&My -irective'包裹的指令,我需要从子组件向父指令发出一个事件,我知道如何使用@Output为父组件执行它,但是没有运气指令。

<div myDirective >
    <my-component></my-component>
</div>

有什么想法吗?

1 个答案:

答案 0 :(得分:3)

一种方法是使用模板变量并在事件处理程序中引用它:

<div myDirective #mydir>
    <my-component (someEvent)="mydir.someMethod()"></my-component>
</div>