在下面的代码中
<input #myRef1 />
<input #myRef2 my-custom-attribute />
将#myRef1
是ElementRef
, 并且#myRef2
将是MyCustomAttributeComponent
指令。基本上,它隐式地找到第一个组件并将其与模板引用变量相关联。感谢 ,我可以强制执行我想要的指令/组件exportAs
,但是在这里,我实际上ElementRef
在这两种情况下都想要。
有什么东西可以强制#myRef2
成为ElementRef
没有 TypeScript的@ViewChild(..., { read: ElementRef })
。我需要在我的模板中myRef2
访问ElementRef
。