2
以下のように使用するにはどうすればいいですか: <test>
の内容の{{x-value}}
は、test.html
のJSクラスを指します。 コンポーネントクラスを参照する方法。実際にng-contentの角度コードをコンポーネント側にレンダリングする方法は?
test.htmlという
<test x-value="abc">
<b>{{x-value}}</b>
</test>
テストcom.js
@Component({
selector : 'test',
template : '<ng-content></ng-content>',
directives : [IONIC_DIRECTIVES],
providers : [],
inputs : ['value : x-value'],
});
export class Test{
constructor() {
}
...
}
このアプローチの問題は何ですか? – micronyks
<試験x値= "ABC"> {{x値}} //ここでx値doesntの印刷ABC(私はここで –
ABC印刷したいが 'X-[値]は、入力プロパティを指し'testcmp'のために' testcmp'テンプレートで利用できるようになります。 – micronyks