如何调用另一个兄弟组件的方法 - angular 1.5

how to call method of another sibling component - angular 1.5

我在一个页面中有两个同级组件需要调用第二个组件函数并传递一些值 onClick 第一个组件 link 的事件。

<my-container>
    <sibling-component1></sibling-component1> // this has link to call function
    <sibling-component2></sibling-component2> // this has function
</my-container>

代码 link : https://codepen.io/sandeep821/pen/aWQXZx?editors=1111

喜欢解决方案(Angular 中协作指令之间的通信):http://blog.carbonfive.com/2015/03/25/communication-between-collaborating-directives-in-angular/