Вызов метода из дочернего компонента в ionic 2 - PullRequest
0 голосов
/ 17 декабря 2018

Я хочу вызвать метод из дочернего компонента (HomePage) в другом дочернем компоненте (CustomPage) в ionic 2, без использования каких-либо служб.я использую два компонента для двух разных вкладок

1 Ответ

0 голосов
/ 17 декабря 2018
You can use a template variable to get a reference to the sibling. If <app-controls> has an output where it emits events when a button is clicked you can do:

отметьте это

<app-controls (buttonClicked)="main.doSomething($event)"></app-controls>
<app-main #main></app-main>
or you can pass a reference to a @Input() siblings; and then call methods on it:

<app-controls [sibling]="main"></app-controls>
<app-main #main></app-main>
...