web-dev-qa-db-fra.com

Erreur: * .default n'est pas un constructeur

Je reçois l'erreur suivante lors du test de code javascript, transpilé à partir d'un fichier TypeScript.

Voici l'erreur:

Error: _mapAction2.default is not a constructor

Voici la ligne de code qui a provoqué l'erreur:

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

Voici le fichier TypeScript d'origine 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;
    }

}

Voici le fichier transpilé .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

Vous devez exporter une valeur par défaut qui ressemblera à:

export default class MapAction implements IMapAction {...

Et l'importer comme:

import MapAction from './map_action_file';

Alternativement, si vous voulez exporter plusieurs choses du module, vous pouvez faire quelque chose comme:

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

Et importez-le comme suit:

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

Vérifiez que votre importation est correcte. vous pourriez manquer {} par exemple.

import LatLngLiteral from '';

à

import { LatLngLiteral } from '';
4
Datsos