0

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..そして、同じクライアントからのドキュメントが見つかりませんjavascriptjavascript接続成功後、以下のように socket.id にアクセスできます。

 const socket = io.connect('https://socketserver.com/', { 'forceNew': true });
      socket.on('connect', function () {
      alert(socket.id)
})

4

1 に答える 1