1
イベントエミッタを使用して同じレベルのの2つのコンポーネント間の通信方法はありますか?角2同じレベルのコンポーネント間の通信
添付のHTMLスニペットでコメントを参照してください。
<div class="custom-container">
<div class="row">
<div class="col-xs">
<app-entity-listing (associationShown)=" TO DO " [isFromRoot]="isFromRoot">
<!-- I am emiting a boolean value -->
</app-entity-listing>
</div>
<div class="col-xs-5">
<div class="right-column-wrapper">
<div class="main-container">
<app-create-entity-screen-no-association [isVisible]="true"></app-create-entity-screen-no-associatio
<! -- Based on emitted value from the first component, I will be visible or not -->
</div>
</div>
</div>
</div>
</div>
これは、子供たちの間で通信を満たすために親コンポーネントが必要です。通信がこのように、またはサービスを通じて行われるべきかどうかは、ケースによって異なります。 – estus