我正在遵循频道文档提供的示例代码并遇到了问题。django 服务器成功地接受了来自浏览器的 websocket,并且发送似乎可以正常工作。但是,消息(ws_message)的服务器端处理似乎没有发生,并且浏览器端没有注册任何回复(也没有任何警报)。
此行为与在 Django 频道中观察到的行为非常相似- Echo 示例不起作用。然而,虽然切换到 twisted 16.2.0 是这种情况的解决方案,但我已经在使用 twisted 16.2.0。
代码片段如下:
消费者.py
from django.http import HttpResponse
from channels.handler import AsgiHandler
def ws_message(message):
print("sending message ", message.content["text"])
raise
message.reply_channel.send({
"text": message.content["text"]
})
路由.py
from channels.routing import route
from channel_test.consumers import ws_message
channel_routing = [
route("websocket.recieve", ws_message),
]
设置.py
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
"channels",
"channel_test",
"argent_display"
]
CHANNEL_LAYERS = {
"default":{
"BACKEND": "asgiref.inmemory.ChannelLayer",
"ROUTING": "argent_display.routing.channel_routing"
}
}
然后运行 django 开发服务器(manage.py runserver)并通过浏览器控制台执行以下命令:
socket = new WebSocket("ws://" + window.location.host + "/chat/");
socket.onmessage = function(e) {
console.log('test');
alert(e.data);
}
socket.onopen = function() {
socket.send("hello world");
}
收到消息后,应发出警报并登录控制台。然而,两者都没有发生。