感谢大家阅读我的第一篇文章。使用 Django 2.02,Django-channels 2.02。
我希望将从前端发送到后端的信息存储到 Django 会话存储中。我的问题是,只要 WebSocket 打开,Django-channels 会话范围似乎只存储信息,但我需要它像 Django http-session 一样存储它。
第一个来自前端 index.html 的 javascript。
<script>
const conn = new WebSocket('ws://localhost:8000/');
var msg = {
type: "message",
message: "Trying to find a solution",
date: Date.now(),
};
msg = JSON.stringify(msg);
conn.onopen = () => conn.send(msg);
</script>
消费者.py
from channels.generic.websocket import JsonWebsocketConsumer
from importlib import import_module
from django.conf import settings
SessionStore = import_module(settings.SESSION_ENGINE).SessionStore
#Have tried SessionStore to store but will also not work
class ConnectConsumer(JsonWebsocketConsumer):
def connect(self):
self.accept()
def receive(self, text_data=None):
text = self.decode_json(text_data) #decode incoming JSON
text_message = text.get('message')
print(self.scope["session"]["message"]) #prints "None"
self.scope["session"]["message"] = text_message
self.scope['session'].save()
print(self.scope["session"]["message"]) #prints "Trying to find a solution"
def disconnect(self, message):
pass
路由.py
from django.urls import path
from channels.http import AsgiHandler
from channels.routing import ProtocolTypeRouter, URLRouter
from channels.auth import AuthMiddlewareStack
from consumers import ConnectConsumer
application = ProtocolTypeRouter({
"websocket": AuthMiddlewareStack(
URLRouter([
path("/", ConnectConsumer),
]),
)
})
视图.py
from django.shortcuts import render
def index(request):
print(request.session.keys()) #returns Empty dict([])
return render(
request,
'index.html',
)
请告诉我这个问题是否广泛或我缺少相关信息。