///<reference path="HtmlElementsAction.ts" />
///<reference path="DesktopSocket.ts" />
module Pong {
export class webPage extends HtmlElementsAction {
private socket;
constructor() {
super();
this.socket = new DesktopSocket(this);
}
}
}
我已经有了这段代码。
当我执行它时,在浏览器的控制台中出错:
Uncaught TypeError: undefined is not a function
错误在新DesktopSocket(this);
我做错了什么?
答案 0 :(得分:3)
常见错误。检查脚本标签的顺序,或者使用&#34; out&#34;进行编译。 tsc的参数顺序。