错误:\*.default 不是构造函数

新手上路,请多包涵

在测试从打字稿文件转译的一些 javascript 代码时,我收到以下错误。

这是错误:

 Error: _mapAction2.default is not a constructor

这是导致错误的代码行:

 var mapAction = new MapAction(MapActionType.POLYGONDRAGGED, []);

这是原始的打字稿文件 map-action.ts

 import { IMapAction} from './imap-action';
import { MapActionType } from './map-action-type.enum';
import {LatLngLiteral} from 'angular2-google-maps/core';

export class MapAction implements IMapAction{
    type: MapActionType;
    paths: Array<LatLngLiteral>;

    constructor(mapActionType: MapActionType, paths: Array<LatLngLiteral>){
        this.type = mapActionType;
        this.paths = paths;
    }

    public getType(): MapActionType{
        return this.type;
    }

    public getPaths(): Array<LatLngLiteral>
    {
        return this.paths;
    }

}

这是转译的 .js 文件 map-action.js

 "use strict";
class MapAction {
    constructor(mapActionType, paths) {
        this.type = mapActionType;
        this.paths = paths;
    }
    getType() {
        return this.type;
    }
    getPaths() {
        return this.paths;
    }
}
exports.MapAction = MapAction;
//# sourceMappingURL=map-action.js.map

原文由 ChristopherMortensen 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 852
2 个回答

您需要导出一个 默认 值,如下所示:

 export default class MapAction implements IMapAction {...

并将其导入为:

 import MapAction from './map_action_file';

或者,如果您想从模块中导出 多个 内容,您可以执行以下操作:

 export class MapAction ...
export class MapSomethng ...

并按如下方式导入:

 import { MapAction, MapSomething } from './map_action_file';

原文由 euvl 发布,翻译遵循 CC BY-SA 3.0 许可协议

如果您在这里尝试了答案并且它们没有帮助,那么请仔细验证您的错误的堆栈跟踪 - 我在我的代码中发现了循环依赖(但错误与这个问题中的相同,因此原因绝对不明显)

原文由 Nikita 发布,翻译遵循 CC BY-SA 4.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题