htmlに複数の子コンポーネント(ChildComponent)がある親コンポーネント(ParentComponent)があります。表示される子コンポーネントの数は、ngForを使用する配列の長さによって異なります。私はどのようにテンプレートの子コンポーネントのそれぞれにプロパティを設定するかを理解しようとしています。ここでngForを使用してネストされたコンポーネントにデータを渡す
は私のparentComponent htmlです:
childComponentTitle: string = "This text is passed to child."
マイChildComponent HTML::
<div>
<p-panel header="Parent Component Manager">
<p-panel header="ChildComponents">
<childComponent *ngFor="let cComponent of cComponentsArray" [name]="childComponentTitle">
</childComponent>
</p-panel>
</p-panel>
</div>
マイParentComponent.component.tsファイルが(私はcComponentsArrayから使用文字列値、これを使用して停止するとが含まれています
<p-accordion [multiple]="true">
<p-accordionTab header="ChildComponent name: {{name}}">
<h4>Random text</h4>
<h4>Random text</h4>
</p-accordionTab>
</p-accordion>
私のChildComponent.component.tsファイルに含まれています:
@Input() name: string;
上記の現在のコードでは、子コンポーネントの「名前」プロパティの1つが同じものに設定されます。私はcComponentsArrayのcComponent内に含まれている文字列の値に従って設定したいと思います。
私は運なしParentComponent.html
[name] = {{cComponent.name}}
に使用してみました。誰かが私が間違ってやっていることと、これを適切に実装する方法を私に説明することができますか?
を使用し、' [名] = {{cComponent.name}} '動作するはずです。 –
@GünterZöchbauerお返事ありがとうございます。これを使用すると、テンプレートの解析エラーが発生します。{{{cComponent.name}}の2列目の予期しないトークン{、予想される識別子、キーワード、文字列] – Roka545
右は無効です。 '[]'と '{{}}'は一緒に使うことはできません。 '[name] =" cComponent.name "'を使用するだけです –