0
私はmd-input
フィールドをダイアログウィンドウ内に持っています(ダイアログは子コンポーネントです)。この値を親コンポーネントの関数のパラメータとして渡す必要があります。 どうすればよいですか?コンストラクタでtriggerParentMethod
に加入し、あなたのParentComponent
でダイアログから親コンポーネントへのmd入力値の受け渡し
import {Injectable } from '@angular/core';
import { Subject } from 'rxjs';
@Injectable()
export class SharedService{
public triggerParentMethod: Subject<string> = new Subject<string>();
}
:
https://angular.io/guide/component-interaction#component-interaction – porgo
私が提供したソリューションをテストしましたか? – Faisal