我正在使用Ionic 2
。
我收到此错误,我无法弄清楚原因。我正在使用构造函数创建一个对象,但错误表明没有构造函数。任何帮助表示赞赏。
错误
TypeError: LocationModel_1.LocationModel is not a constructor
var locationModel = new LocationModel_1.LocationModel();
码
var locationModel: LocationModel = new LocationModel();
LocationModel.ts
import { Injectable } from "@angular/core";
@Injectable()
export class LocationModel {
public id: number = null;
public latitude: number = null;
public longitude: number = null;
constructor() {
}
}