我设法制作了一个类似于 gevent-socketio 的 django 聊天示例的应用程序。但是,当我在 sockets.py 中添加命名空间(类)时,出现 socketio 错误:'no_such_namespace'。
我需要添加
socketio_manage(request.environ, { '/chat': ChatNamespace ,'/other': OtherNamespace },request)
在我看来,但后来我有以下 KeyError:
File "...socketio/__init__.py", line 67, in socketio_manage
socket = environ['socketio']
KeyError: 'socketio'