我正在尝试在客户端断开连接之前(客户端离开页面时)向所有用户发送消息。
def disconnect(self, close_code):
# Leave room group
self.user = self.scope["user"]
self.send(text_data=json.dumps({
"message": self.user.username,
"typeMessage": "lobby",
"created": False,
}))
print("Try to send the message")
async_to_sync(self.channel_layer.group_discard)(
self.group_name,
self.channel_name
)
这是我尝试发送消息但不起作用的功能。打印功能有效,终端输出上显示“尝试发送消息”。 如果您可以帮助我提出一个建议,那将很好。谢谢!