我一直在尝试将Django频道集成到我现有的Django应用程序中。
这是我的routing.py:
from channels.routing import route
channel_routing = [
route('websocket.receive', 'chat.consumers.ws_echo', path=r'^/chat/$'),
]
这是我的consumer.py:
def ws_echo(message):
message.reply_channel.send({
'text': message.content['text'],
})
我试图通过这样做来创建一个套接字:
ws = new WebSocket('ws://' + window.location.host + '/chat/');
ws.onmessage = function(message) {
alert(message.data);
};
ws.onopen = function() {
ws.send('Hello, world');
};
当我运行此代码时,我在控制台中收到以下错误:
WebSocket connection to 'ws://localhost:8000/chat/' failed: Error during WebSocket handshake: Unexpected response code: 404
在我的服务器上,我收到以下错误:
HTTP GET /chat/ 404
根据错误,我认为Django提供的是http连接而不是ws连接。
非常感谢您对此问题的任何帮助。
答案 0 :(得分:1)
我的设置问题在于我的nginx配置。我所要做的只是添加转发线,它解决了问题。
location /chat { # Django Channels
proxy_pass http://0.0.0.0:8001;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}