我的 Javascript 代码中有两个非常简单的类:
class Renderable{
toHTML(){
return '';
}
}
class Intro extends Renderable{
constructor(title, pretitle, backgroundImage){
debugger;
this.title = title;
this.pretitle = pretitle;
this.backgroundImage = backgroundImage;
}
[...]
}
代码是这样有序的,所以不应该有任何提升问题。但是,当我加载网页时,出现以下错误:
ReferenceError: Cannot access uninitialized variable.在this.title = title;构造函数中的那一行。当我打开调试器时,我看到this确实是undefined. 我究竟做错了什么?
慕工程0101907
GCT1015
相关分类