如何在views.py中制作频道客户端?
Posted
技术标签:
【中文标题】如何在views.py中制作频道客户端?【英文标题】:How to make channel client in views.py? 【发布时间】:2020-04-17 10:18:25 【问题描述】:我正在views.py 中创建一个聊天机器人,它将接收用户的HTTP 请求,views.py 与机器人交互并返回给用户。我正在使用通道在 views.py 和聊天机器人 API 之间进行通信。以下是视图代码和频道消费者代码。
#views.py
@api_view(['POST'])
def conv(request):
ws = create_connection(url)
ws.send("message":request.data["msg"])
rec = ws.recv()
return "msg" : rec
#consumers.py
class ChatConsumer(AsyncWebsocketConsumer):
async def connect(self):
self.room_name = self.scope['url_route']['kwargs']['room_name']
self.room_group_name = 'chat_%s' % self.room_name
# Join room group
await self.channel_layer.group_add(
self.room_group_name,
self.channel_name
)
await self.accept()
async def disconnect(self, close_code):
# Leave room group
await self.channel_layer.group_discard(
self.room_group_name,
self.channel_name
)
# Receive message from WebSocket
async def receive(self, text_data):
text_data_json = json.loads(text_data)
message = text_data_json['message']
# Send message to room group
await self.channel_layer.group_send(
self.room_group_name,
'type': 'chat_message',
'message': message
)
# Receive message from room group
async def chat_message(self, event):
message = event['message']
# Send message to WebSocket
await self.send(text_data=json.dumps(
'message': message
))
从频道接收后,连接断开,我无法在消费者端保持聊天会话。
【问题讨论】:
【参考方案1】:我有类似的设置,我认为推送给消费者的代码是错误的。我使用集成到 django 频道的功能
所以要将一些数据推送到您可以使用的房间
from asgiref.sync import async_to_sync
from channels.layers import get_channel_layer
channel_layer = get_channel_layer()
async_to_sync(channel_layer.group_send)(room_group_name, data)
【讨论】:
频道本身会不会根据我发的名字做一个新群? 从频道接收呢?我们怎么能这样做?因为我希望进行一些文本处理并将其返回到将从视图中读取的聊天室。 如果我理解正确,您应该为此使用 javascript 发送一些消息 但用户只能使用 http 请求连接到 api,因为它是第三方 api。我无法直接使用 websocket 将模板连接到消费者。以上是关于如何在views.py中制作频道客户端?的主要内容,如果未能解决你的问题,请参考以下文章