1
#localvariable
(<input type='button' #localvariable (click)='doSomething()'>
)を使用せずに特定の場所に動的要素を追加する方法はありますか。#localvariableを指定せずに特定の場所に要素をコンパイル
<td></td>
コンパイル後:所与例えば
、
<td><input type='button' (click)='doSomething()'></td>
それは仕事です。ありがとうございました。 –
Using 'ComponentFactory.create'どのようにしてコンポーネントにデータを渡すことができますか?私の2番目の質問要素の代わりに文字列として要素を渡すことは可能ですか? –
'compRef.instance.someField = 'foo';' https://stackoverflow.com/questions/36325212/angular-2-dynamic-tabs-with-user-click-chosen-components/36325468#36325468にはそれをやる。 –