未捕获的ReferenceError:未定义导入的类

时间:2018-06-21 23:33:32

标签: javascript class

从父类扩展时,我得到:

  

未捕获的ReferenceError:Plottable未定义

Place.js:

import {Plottable} from "../Plottable.js";

console.log(Plottable.word);
export class Place extends Plottable {}

Plottable.js:

import {Place} from "./Place/Place.js";
export class Plottable extends Thing {}

让我感到困惑的是,由于某种原因,我的IDE(Intellij IDEA)中没有抛出任何错误或警告。

编辑: 显然,import {Place} from "./Place/Place.js";中的Plottable.js引起了问题。为什么会这样?

0 个答案:

没有答案