我试图实现一个类,命名Coord,并且它接收一个名称作为参数,但是当我创建它的一个实例,并试图调用它的方法时,它没有&#39 ;工作
class Coordenador {
constructor(nome) {
this.nome = nome;
this.demanda = 0;
this.custoUnitario = 0;
this.capitalInicialEmpresas = 0;
this.numeroRodadas = 0;
this.isDefined = false;
this.type = "COORDENADOR";
}
definirDados(demanda, custo, capital, rodadas) {
this.demanda = demanda;
this.custoUnitario = custo;
this.capitalInicialEmpresas = capital;
this.numeroRodadas = rodadas;
this.isDefined = true;
}
}
const c = new Coordenador("test");
c.definirDadosDaRodada(1200, 1000, 1000, 5);

我真的无法理解为什么我会收到此错误
setDadosJogo.js:111 Uncaught TypeError: c.definirDados is not a function

答案 0 :(得分:1)
检查您拨打的电话方式。它不是你定义的那个。