在测试从打字稿文件转译的一些 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 许可协议
您需要导出一个 默认 值,如下所示:
并将其导入为:
或者,如果您想从模块中导出 多个 内容,您可以执行以下操作:
并按如下方式导入: