我试图在javascript中使用一个类(如果你想知道使用节点)并且目前它没有错误的要求但不是真的要求正确,继承人类代码
class npc {
constructor(name, dialog) {
this.name = name;
this.dialog = dialog;
}
rdialog() {
this.tts = dialog[Math.floor(Math.random()*dialog.lensgth)];
return this.tts;
}
}
这就是我试图要求它的方式
var npc = require('../Npcs/npc.js');
我一直得到一个空对象{}似乎无法找到答案当我得到更多的东西时我最终得到了一个名为npc的函数