如何在Angular中获取数据模型的类名?

时间:2019-02-13 12:47:06

标签: javascript angular data-modeling

在Angular中使用此数据模型代码:

export class Car {
  brand: string;
  year: number;
  nameOfModel() => {
    // I need return here the name of class as a string: 'Car'
  }
}

我可以以某种方式以字符串形式返回类的名称吗?

1 个答案:

答案 0 :(得分:1)

这对我有用:

export class Car {
    brand: string;
    year: number;
    nameOfModel: string = () => {
        return Car.name
    }
}