0
* ngFor指示とコンテンツ投影を組み合わせることは可能ですか?例えば角2 - ngFor with ContentProjection
: ...
@Component({
selector: 'test',
template: `
<div>
<ng-content *ngFor="..."></ng-content> // <-- Phantasy example
</div>
`
})
export class TestComponent {
}
...
<test>
<p>Hello World</p>
</test>
...
だから、コンパイル後のDOMの結果は次のようになります。
<test>
<p>Hello World</p>
<p>Hello World</p>
<p>Hello World</p>
</test>
はhttp://stackoverflow.com/questions/37685018/repeating-use-of-ng-content/37685085#37685085、http://stackoverflow.com/questions/も参照してください。 37676593/how-to-repeat-a-piece-of-html-multiple-times-without-ngfor-without-another/37676946#37676946 –