在测试版中,我正在访问模板以通过;
重复数据组件 @ContentChild(TemplateRef) itemTemplate: TemplateRef;
使用RC0,发生错误的是“通用类型'TemplateRef需要1个类型的参数”
我应该将哪种类型定义为泛型类型?它可以是任何html内容,如;
http://www.primefaces.org/primeng/#/datalist
我相信;
@ContentChild(TemplateRef) itemTemplate: TemplateRef<any>;
应该可以工作,因为我不一定需要任何特定的类型,除了$ implicit。
答案 0 :(得分:2)
似乎使用
在RC4中工作@ContentChild(TemplateRef) itemTemplate: TemplateRef<any>;