我试图使用Django频道来创建一个对于连接到套接字的每个人保持持久的对象/
当我尝试创建一个在多个receive()
运行之间保持持久性的对象时,它会抛出NoneType
异常
class MyConsumer(WebsocketConsumer):
def __init__(self,path):
self.protocol = None
WebsocketConsumer.__init__(self, path)
def connection_groups(self):
return ["test"]
# Connected to websocket.connect
def connect(self,message):
try:
self.protocol = "hello"
except Exception as exc:
print ("Unable to accept incoming connection. Reason: %s" % str(exc))
self.message.reply_channel.send({"accept": True})
# Connected to websocket.receive
def receive(self,text=None, bytes=None):
text = self.protocol[1] # This throws an error that says protocol is none
self.send(text=text, bytes=bytes)
# Connected to websocket.disconnect
def disconnect(self,message):
pass
答案 0 :(得分:2)
基于类的消费者未经实例化,i。即每当新消息被路由到消费者时,它就会创建一个全新的消费者。因此,无法在消费者自身的消息之间保留数据。
答案 1 :(得分:0)
你可以和工人一起做。一个工人创建一个不会消失的消费者实例。该实例中的一个对象也保持不变。如果你想访问你的对象,你可以向工作人员发送请求/消息,工作人员又将它们委托给对象。