0

我在 Angular6 应用程序之外有一个 JSON 文件,我想在运行时读取该 JSON 文件并在我的应用程序中附加组件。

就像我得到

response:[{html:"<dynamic-component></dynamic-component>",component:"
import { Component, OnInit } from '@angular/core';
@Component({
  selector: 'dynamic-component',
  template: '<span>Hello from dynamic component</span>'
})
export class DynamicComponent implements OnInit {
  constructor() { }

  ngOnInit() {
  
  }

}"
}];

请建议,无论如何在Angular6中我都可以实现那种类型的动态组件加载器。

4

0 回答 0