1
テンプレートを経由せずに、親のtypescriptファイルに直接データを出力したい入れ子コンポーネントがあります。 使用できません<child (childEvent)="parentFunc()"></child>
角2:子コンポーネントから親コンポーネントのスクリプトファイルに直接送信
これは可能ですか?もしそうなら、どうですか?
これは現在の状態です。
parent.component.html(要素をこのなければならない)
<child #child> </child>
parent.component.ts
@ViewChild('child') public child;
public doSomething() {
this.child.work();
}
public doThisWhenChildEmits(someData) {
//?????How do I call this function from child without going through the DOM
alert(It worked)
}
child.component.ts
あなたが使用しない場合は3210
ありがとうございます。私はあなたの答えがうまくいくと思う、私はそれにコミットし、最高の答えとしてあなたを選択する前にカップル日を与えたい。 –
本当に、分かります! :) – Alex