如何使用变量在Angular2中定义templateUrl

时间:2016-09-09 11:17:05

标签: angular typescript

我希望组件使用变量设置templateUrl,但它不起作用。

@Component({
    selector: 'article',
    templateUrl: '{{article.html}}',
    styleUrls: ['styles/stylesheets/article.component.css']
})

export class ArticleComponent implements OnInit {
    constructor(private route: ActivatedRoute, private articleService: ArticleService) { }
    articleArray = this.articleService.getArticles();
    article: Article;

    ngOnInit(): void {
        this.route.params.forEach((params: Params) => {
            let headline = params['headline'];
            this.article = this.articleService.getArticle(headline)
        });
    }

}

我看到的每一个地方,我只能看到Angular 1.X的解决方案,这真的令人沮丧。我查看了浏览器控制台,发现{{article.html}}甚至没有解决。它的阅读本来就是这样。当我自己设置路径时,它完全正常,所以我知道问题不是在这里,而是在这里。

1 个答案:

答案 0 :(得分:14)

我认为你应该使用动态组件加载来做到这一点。

假设我们有一个json文件:

{
    "title": "My first article",
    "html": "app/articles/first.html"
}

我们可能会创建 HtmlOutlet 指令,该指令将使用所需的 templateUrl 创建动态组件:

@Directive({
  selector: 'html-outlet' 
})
export class HtmlOutlet {
  @Input() html: string;

  constructor(private vcRef: ViewContainerRef, private compiler: Compiler) {}

  ngOnChanges() {
    const html = this.html;
    if (!html) return;

    @Component({
      selector: 'dynamic-comp',
      templateUrl: html
    })
    class DynamicHtmlComponent  { };

    @NgModule({
      imports: [CommonModule],
      declarations: [DynamicHtmlComponent]
    })
    class DynamicHtmlModule {}

    this.compiler.compileModuleAndAllComponentsAsync(DynamicHtmlModule)
      .then(factory => {
        const compFactory = factory.componentFactories
               .find(x => x.componentType === DynamicHtmlComponent);
        const cmpRef = this.vcRef.createComponent(compFactory, 0);
        cmpRef.instance.prop = 'test';
        cmpRef.instance.outputChange.subscribe(()=>...);;
    });
  }
}

然后使用它:

<html-outlet [html]="article?.html">

其中html是文章html的路径

Plunkr

中查看更多详细信息