我正在尝试从字符串动态获取组件,具体取决于客户端。
import { C22Component } from '../client/c22/c22.component';
import { C26Component } from '../client/c26/c26.component';
@Component({
selector: 'special-client',
template: '<div #specialView></div>'
})
export class SpecialClientComponent {
@Input() clientId:number;
getComponent() {
return `C${this.clientId}Component`;
}
}
我尝试使用eval()
功能,但它不起作用。
谢谢。