【发布时间】:2018-05-11 05:21:39
【问题描述】:
我正在使用 Python 3.6、Django 1.11 和 chennels=2。 我正在关注本教程,在教程第 2 部分之前它工作正常:http://channels.readthedocs.io/en/stable/tutorial/part_2.html
当我转到教程第 3 部分并相应更改 ChatConsumer 文件时:http://channels.readthedocs.io/en/stable/tutorial/part_3.html
我遇到了这个问题
ImportError: 无法导入名称“AsyncWebsocketConsumer”
Consumer.py:
from channels.generic.websocket import AsyncWebsocketConsumer
import json
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
}))
【问题讨论】:
-
可以导入
WebsocketConsumer吗? -
哦,你告诉过教程 2 中的工作查找。我没看到。当你在
python manage.py shell中调用AsyncWebsocketConsuemr时发生了什么? -
import channels.layers channel_layer = channels.layers.get_channel_layer() from asgiref.sync import async_to_sync async_to_sync(channel_layer.send)('test_channel', {'type': 'hello'}) async_to_sync( channel_layer.receive)('test_channel') 我在 shell 中遵循了这个,它工作得很好,如教程第 2 部分中所述
-
我的意思是
from channels.generic.websocket import AsyncWebsocketConsumer在 shell 中发生了什么?您可以在 shell 中调用AsyncWebsocketConsume,但不能仅在 consumer.py 中调用? -
ImportError: cannot import name 'AsyncWebsocketConsumer' 从 django shell 调用时出现同样的错误
标签: python django chat django-channels