2017-04-26 18 views
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> 
+0

は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 –

答えて

0

コンパイル時にng-contentが解決されるので、これは現在サポートされていないと思います。

この問題を参照してください:#8563