web-dev-qa-db-ja.com

エラー:* .defaultはコンストラクタではありません

TypeScriptファイルから変換されたJavaScriptコードをテストすると、次のエラーが表示されます。

エラーは次のとおりです。

Error: _mapAction2.default is not a constructor

エラーの原因となったコード行は次のとおりです。

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

元のTypeScriptファイル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
40

次のようなデフォルト値をエクスポートする必要があります。

export default class MapAction implements IMapAction {...

そしてそれを次のようにインポートします:

import MapAction from './map_action_file';

あるいは、モジュールからmultipleをエクスポートしたい場合は、次のようなことができます:

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

そして、次のようにインポートします。

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

インポートが正しいことを確認してください。たとえば、{}を見逃す可能性があります。

import LatLngLiteral from '';

import { LatLngLiteral } from '';
4
Datsos