Angular2根据服务响应动态选择模板

时间:2016-06-06 04:00:10

标签: angular components

我有一个名为" Node"它应该显示一个帖子,但我有一个以上的帖子类型,每个类型都有自己的视图(布局)。

因此,此组件有一个ID参数,用于从服务获取帖子响应,然后根据帖子类型显示正确的布局。

ex:localhost/test_app/node/123其中123是id参数。

方法1:在模板中使用ngIf

@Component({
  selector: 'node',
  directives: [Post, Project],
  template: `
    <post *ngIf="response.post.post_type == 'post'" content="response.post"></post>
    <project *ngIf="response.post.post_type == 'project'" content="response.post"></project>
  `,
})

export class Node{

  id: number;
  response: any;
  constructor(private _param: RouteParams,
              public service: Service
  ){
    this.id = +_param.get('id');
  }

  ngOnInit(){
    this.service.get(this.id).subscribe(
      res=> this.response = res.json()
    );
  }

}

方法2:使用动态组件加载器。

@Component({
  selector: 'node',
  directives: [Post, Project],
  template: '<div #container></div>'
})

export class Node{

  id: number;
  response: any;

  constructor(private _param: RouteParams,
              public service: Service,
              private loader:DynamicComponentLoader,
              private elementRef:ElementRef
  ){
    this.id = +_param.get('id');
  }

  ngOnInit(){
    this.service.get(this.id).subscribe(
      res=> {
          this.response = res.json();
          this.renderTemplate();
      }
    );
  }

  renderTemplate(template) {
    this.loader.loadIntoLocation(
      this.getCorrectTemplate(),
      this.elementRef,
      'container'
    )
  }

  getCorrectTemplate(){
    if(this.response.post.post_type == "post"){
        return '<post content="response.post"></post>';
    }
    else{
        return '<project content="response.post"></project>';
    }
  }

}

我想知道哪种方法更有效,或者有更好的方法,请分享。

1 个答案:

答案 0 :(得分:3)

如果您拥有一组有限的可能模板,则*ngIf*ngSwitch是一种不错的方法。它允许您在父级和子级之间使用[]()绑定。

如果您有一组静态未知的模板,例如由参数提供,那么*ngIf不起作用。然后ViewContainerRef.createComponent()(替换DynamicComponentLoader)是正确的方法。有关示例,请参阅Angular 2 dynamic tabs with user-click chosen components