标签: angular typescript
我想转换此字符串" BoxOneComponent"到BoxOneComponent(类名)。如何在角度2中进行类型转换?是否有类似.toString()的东西来强制转换为类名?
答案 0 :(得分:3)
你能做的就是创建一个像这样的对象
let classes = { BoxOneComponent: BoxOneComponent };
并像这样称呼它
let myVar = new this.classes[this.myString]();