python-socketio
の代わりに接続socketIO
nodejs
サーバーを使用し始めjavascript
ました。ソケット ID に問題があります。
class LoginSocket(socketio.ClientNamespace):
def on_connect(self):
print('connected to server')
# I need get socket id here to emit to server
# sio.disconnect()
def on_python(self, *args, **kwargs):
print(args, kwargs, 'xxxxxxxxxxxxxxxxxxxxxx')
def on_disconnect(self):
print('disconnected from server')
sio = socketio.Client()
sio.register_namespace(LoginSocket('/'))
if __name__ == '__main__':
sio.connect('https:/sitename.com/')
sio.wait()
socket.id
..そして、同じクライアントからのドキュメントが見つかりませんjavascript
。javascript
接続成功後、以下のように socket.id にアクセスできます。
const socket = io.connect('https://socketserver.com/', { 'forceNew': true });
socket.on('connect', function () {
alert(socket.id)
})