angle2のコンポーネントに文字列値を渡したいのですが、デフォルトのバインディングでは機能しません。私はこれに似た何かを考えています:
<component [inputField]="string"></component>
残念ながら、割り当ての右側では式のみが許可されています。これを行う方法はありますか?
angle2のコンポーネントに文字列値を渡したいのですが、デフォルトのバインディングでは機能しません。私はこれに似た何かを考えています:
<component [inputField]="string"></component>
残念ながら、割り当ての右側では式のみが許可されています。これを行う方法はありますか?
回答:
文字列リテラルは、さまざまな方法で渡すことができます。
<component inputField="string"></component>
<component [inputField]="'string'"></component>
<component inputField="{{'string'}}"></component>
<component [inputField]='string'></component>
id="example-id"
は、必要な正しい文字列を渡しますが、同じid
属性を持つ2つの要素があります。...賢く、このアプローチを使用してください
文字列を引用符で囲むことにより、文字列を渡すことができます
<component [inputField]="'string'"></component>