如何为预计的ng内容获取直接引用(例如ElementRef或其他任何内容)?
尝试过的解决方案:
<ng-content #myRef></ng-content>
// more html markup here
打字稿说myRef is undefined
:我试过了:
@ViewChild(&#39; myRef&#39;)
@ContentChild(&#39; myRef&#39)
我不是在寻找这个:
<div #myRef>
<ng-content><ng-content>
<div>
我问题的任何解决方案?