我正在研究如何在Angular中动态创建组件。我不明白语法:
(<AdComponent>componentRef.instance).data = adItem.data;
有人可以解释吗?
答案 0 :(得分:0)
使用这一行(<AdComponent>componentRef.instance).data = adItem.data;
实际上,您告诉TS实例是AdComponent
类型,仅此而已。
因此,在动态加载的组件中,@Input() data
是AdComponent
像这样
@Input() data:AdComponent