标签: javascript function websocket scope anonymous
我有点卡住:/ 我不知道如何在匿名函数内初始化变量,当websocket从服务器接收消息时调用。 有没有办法使用收到的功能外收到的消息?有一种方法可以做到这一点:
// Very simplified code: var x; socket.onmessage = function (e) { x = messageReceived; } console.log(x) // print the message received.
我希望有人可以帮助我:)。