我的应用程序如下所述:
组件: 1.家长 2.孩子1 3. child2 3. child13
所以child1和child2属于parent,child13属于child1。
我正在使用RouterConfig进行导航。所以模板可以在下面描述。
parent.html
this is parent click on childs
<a [routerLink]="['Child1']">Child1</a>
<a [routerLink]="['Child1']">Child2</a>
<router-outlet></router-outlet>
Child1.html
this is child1 please click on grand-child
<a [routerLink]="['Child13']">grand-child</a>
<router-outlet></router-outlet>
问题:我想从child1和child13执行父组件中的函数。
如何发送或执行父功能?
我使用了事件发射器,但它需要在parent.html文件中使用子组件html标签来定义映射 在这里,我不能因为这些组件使用路由器进行导航。