以下と同じオブジェクトのメソッド内からJavaScriptオブジェクトメソッドを呼び出す方法を理解しようとしています..
var testObject = {
method1 : function() {
var connectionAddr = "ws://localhost:8003";
socket = new WebSocket(connectionAddr);
socket.onmessage = function(event) {
method2();
}
},
method2: function() {
this.method1();
}
}
this.method2() を使用するときに WebSocker オブジェクトを参照していることに気付いたので、質問を変更しました。