如何在Angular2 ngSwitch语句中使用typcript枚举值

前端之家收集整理的这篇文章主要介绍了如何在Angular2 ngSwitch语句中使用typcript枚举值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Typescript枚举似乎与Angular2的ngSwitch指令自然匹配。但是当我尝试在我的组件模板中使用枚举,我得到“无法读取属性’xxx’未定义在…”。如何在我的组件模板中使用枚举值

请注意,这不同于如何基于枚举的所有值创建html选择选项(ngFor)。这个问题是关于ngSwitch基于枚举的特定值。虽然同样的方法创建一个类的内部引用枚举出现。

您可以创建对组件类中的枚举的引用(我只是将初始字符更改为小写),然后使用模板( plunker)中的引用:
import {Component} from 'angular2/core';

enum CellType {Text,Placeholder}
class Cell {
  constructor(public text: string,public type: CellType) {}
}
@Component({
  selector: 'my-app',template: `
    <div [ngSwitch]="cell.type">
      <div *ngSwitchCase="cellType.Text">
        {{cell.text}}
      </div>
      <div *ngSwitchCase="cellType.Placeholder">
        Placeholder
      </div>
    </div>
    <button (click)="setType(cellType.Text)">Text</button>
    <button (click)="setType(cellType.Placeholder)">Placeholder</button>
  `,})
export default class AppComponent {

  // Store a reference to the enum
  cellType = CellType;
  public cell: Cell;

  constructor() {
    this.cell = new Cell("Hello",CellType.Text)
  }

  setType(type: CellType) {
    this.cell.type = type;
  }
}
原文链接:https://www.f2er.com/angularjs/145315.html

猜你在找的Angularjs相关文章