ORIGINAL EXCEPTION:TypeError:LocationModel_1.LocationModel不是构造函数

时间:2016-08-12 13:01:26

标签: javascript angularjs angular ionic-framework ionic2

我正在使用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() {
    }
}

0 个答案:

没有答案