1. ホーム
  2. angular

[解決済み] angular2のコンポーネントに文字列を渡す方法

2023-02-28 09:52:19

質問

angular2で文字列の値をコンポーネントに渡したいのですが、デフォルトのバインディングではうまくいきません。 これに似たものを考えています。

<component [inputField]="string"></component>

残念ながら、割り当ての右側には式しか使えません。何か方法はないでしょうか?

どのように解決するのですか?

文字列リテラルは、さまざまな方法で渡すことができます。

<component inputField="string"></component>
<component [inputField]="'string'"></component>
<component inputField="{{'string'}}"></component>