在测试一些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
答案 0 :(得分:50)
您需要导出默认值,如下所示:
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';
答案 1 :(得分:2)
另一种解决方案是将"esModuleInterop": true,
添加到tsconfig.json
中。
esModuleInterop
允许从模块进行默认导入,而没有默认导出。
答案 2 :(得分:1)
检查您的导入是否正确。例如,您可能会错过{}。
import LatLngLiteral from '';
到
import { LatLngLiteral } from '';
答案 3 :(得分:-1)
由于javascript are syntactic sugar中的课程,我想我会尝试在没有它们的情况下解决这个问题。对我来说,将架构转换为原型似乎已经解决了我的问题。发布以防其他人遇到此问题但已经在进行export default