我一直在遵循stackoverflow的答案:如何在类中实现asyncio websockets?
但我现在无法解决的问题是echowebsocket类的示例只能发送一条消息。我无法在每次通信中发送多条消息/自定义消息。
async def main():
async with EchoWebsocket() as echo:
await echo.send("Hello!")
print(await echo.receive()) # "Hello!"
下面是我要做的,创建echowebsocket类的示例并将连接返回给用户。因此,用户可以始终使用send方法与服务器通信。
谢谢你的帮助。
暂无答案!
目前还没有任何答案,快来回答吧!