绑定在Angular2模板中不起作用

时间:2016-06-02 16:46:50

标签: data-binding typescript angular

从另一个Alert.showAlert("success","someMsg");调用Component时,

错误类型没有显示,但是在初始化errorType本身的声明时它正在工作。

组件:

 import {Component} from 'angular2/core';

    @Component({
        selector: 'alert-component',
        templateUrl: 'app/alert.template.html'
    })

    export class Alert {

     public static errorType:string;
     public static messageAlrt:string;

     public static showAlert(type:string, message:string): void{
          Alert.errorType=type;
        }

    }

模板:

<div id="messageAlert" >
            <strong>{{errorType}}:</strong> this is the error message at top of the page      
        </div>

非常感谢您帮助解决errrorType值未绑定到erroType的问题

1 个答案:

答案 0 :(得分:3)

这是因为你使用的是静态字段。使用{{errorType}}时,将使用组件的非静态属性。

我会以这种方式重构你的组件:

import {Component} from 'angular2/core';

@Component({
    selector: 'alert-component',
    templateUrl: 'app/alert.template.html'
})
export class Alert {
  public errorType:string;
  public messageAlrt:string;
}

当您想要显示提醒时,我会动态添加它:

@Component({
  (...)
  template: `<div #target></div>`
})
export class SomeComponent {
  @ViewChild('target', {read: ViewContainerRef}) target;

  showAlert(type:string, message:string) {        
    this.resolver.resolveComponent(Alert).then(
      (factory:ComponentFactory<any>) => {
        this.cmpRef = this.target.createComponent(factory);
        this.cmpRef.type = type;
      }
    );
  }

看到这个伟大的Günter的回答: