Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我在派生小部件中调用 this.Super("initWidget") 时,浏览器给出异常
**TypeError: this.Super is not a function**
谁能帮我解决这个问题?
this 和 super 是关键字。this 指的是当前对象,而 super 指的是父类。如果您尝试调用 super,则您正在调用超类的构造函数。在您的情况下,只有一个参数。你应该只使用
super("initWidget");
因为 this 之后的点运算符意味着您要在当前对象中使用方法。