# chat/consumers.py import json from channels.generic.websocket import WebsocketConsumer,AsyncWebsocketConsumer import wsps.tasks_loop import time p=print # class ChatConsumer(WebsocketConsumer,wsps.tasks_loop.AclTaskMixin,wsps.tasks_loop.AconMixin): class ChatConsumer(AsyncWebsocketConsumer,wsps.tasks_loop.AclTaskMixin,wsps.tasks_loop.AconMixin): def connect(self): p("!!!!!!!!!!!!!!!!!!!!?") print("",end="",flush=True) # time.sleep(1.5) # p("!!!!!!!!!!!!!!!!!!!!") # print("",end="",flush=True) self.accept() def disconnect(self, close_code): pass def receive(self, text_data): p("text_data:",text_data) print("",end="",flush=True) text_data_json = json.loads(text_data) message = text_data_json['message'] self.send(text_data=json.dumps({ 'message': message })) self.send(text_data=json.dumps({ 'zzz': {"abc":123} })) # print(">>>>>>>>>>>>>") print("++?",end="\n",flush=True) # print("++2?",end="\n",flush=True) # print("++",end="\n",flush=True)