标签: javascript angular events event-handling angular2-components
我遇到父母和子组件必须听同一事件的情况,但处理顺序非常重要。
例如,在 parent.component.html 中,我有
<child-component></child-component>
我在 parent.component.ts 和 child.component.ts 中订阅相同的事件。
我能确定哪一个会先执行,如果可以的话 - 那是哪一个?