gpt4 book ai didi

javascript - 为什么在类方法中使用我的实例属性未定义?

转载 作者:行者123 更新时间:2023-12-03 09:32:46 24 4
gpt4 key购买 nike

当尝试运行 cow1.voice(); 时,我不断在控制台中收到错误消息。

Uncaught ReferenceError: type is not defined

class Cow {
constructor(name, type, color) {
this.name = name;
this.type = type;
this.color = color;
};
voice() {
console.log(`Moooo ${name} Moooo ${type} Moooooo ${color}`);
};
};

const cow1 = new Cow('ben', 'chicken', 'red');

最佳答案

type 和其他是您的类的实例变量,因此您需要使用 this 来访问它们。提供给构造函数的初始变量 nametypecolor 用于类初始化,在构造函数之外不可用。

class Cow {
constructor(name, type, color) {
this.name = name;
this.type = type;
this.color = color;
};

voice() {
// Access instance vars via this
console.log(`Moooo ${this.name} Moooo ${this.type} Moooooo ${this.color}`);
};
};

关于javascript - 为什么在类方法中使用我的实例属性未定义?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57858485/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com