编程语言
首页 > 编程语言> > javascript-“类扩展值#不是构造函数或null”

javascript-“类扩展值#不是构造函数或null”

作者:互联网

感谢您阅读我的文章
我在代码中收到此错误:“类扩展值#不是构造函数或null”
这是我的代码,我正在尝试导出/导入类.

monster.js:

const miniMonster = require("./minimonster.js");

class monster {
  constructor(options = { name }, health) {
    this.options = options;
    this.health = 100;
    this.heal = () => {
      return (this.health += 10);
    };
  }
}

let bigMonster = new monster("Godzilla");
console.log(bigMonster);

console.log(bigMonster.heal());

let mini = new miniMonster("Demon");
console.log(mini);
console.log(mini.heal());

module.exports = monster;

minimonster.js:

const monster = require("./monster.js");

class miniMonster extends monster {
  constructor(options) {
    super(options);
    this.health = 50;
    this.heal = () => {
      return (this.health += 5);
    };
  }
}

let miniM = new miniMonster("Jon");
console.log(miniM);

module.exports = miniMonster;

多谢您的协助,

祝你有美好的一天

解决方法:

我认为您的要求至少有一个问题.

> monster.js第一行是const miniMonster = require(“ ./ minimonster.js”);
> minimonster.js第一行是const monster = require(“ ./ monster.js”);

这是一个问题,您不能同时评估两个文件.
我不需要Monster.js的minimonster

这可以解决您的问题.

标签:es6-class,javascript
来源: https://codeday.me/bug/20191109/2011597.html