4
私はParentComponentとChildComponentを持っていますので、ParentComponentのngModelをChildComponentに渡す必要があります。angular2は子コンポーネントにngModelを渡します
// the below is in ParentComponent template
<child-component [(ngModel)]="valueInParentComponent"></child-component>
ChildComponentでngModelの値を取得して操作するにはどうすればよいですか?親コンポーネント
活字体で
: - >子供、子供のための@Input
を使用 - >親、両方を使用するので、@output
を使用する親のために
をあなたが@Input(作ることができる)子コンポーネントに、どのような場合は、<子成分[yourinput] =「someVariable」/> –