django channels使用和配置及實現群聊
1.1WebSocket原理
http協議
- 連接
- 數據傳輸
- 斷開連接
websocket協議,是建立在http協議之上的。
- 連接,客戶端發起。
- 握手(驗證),客戶端發送一個消息,後端接收到消息再做一些特殊處理並返回。 服務端支持websocket協議。
1.2django框架
django默認不支持websocket,需要安裝組件:
pip install channels
配置:
註冊channels
INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', 'channels', ]
在settings.py中添加 asgi_application
ASGI_APPLICATION = "ws_demo.asgi.application"
修改asgi.py文件
import os from django.core.asgi import get_asgi_application from channels.routing import ProtocolTypeRouter, URLRouter from . import routing os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'ws_demo.settings') # application = get_asgi_application() application = ProtocolTypeRouter({ "http": get_asgi_application(), "websocket": URLRouter(routing.websocket_urlpatterns), })
在settings.py的同級目錄創建 routing.py
from django.urls import re_path from app01 import consumers websocket_urlpatterns = [ re_path(r'ws/(?P<group>\w+)/$', consumers.ChatConsumer.as_asgi()), ]
在app01目錄下創建 consumers.py,編寫處理處理websocket的業務邏輯。
from channels.generic.websocket import WebsocketConsumer from channels.exceptions import StopConsumer class ChatConsumer(WebsocketConsumer): def websocket_connect(self, message): # 有客戶端來向後端發送websocket連接的請求時,自動觸發。 # 服務端允許和客戶端創建連接。 self.accept() def websocket_receive(self, message): # 瀏覽器基於websocket向後端發送數據,自動觸發接收消息。 print(message) self.send("不要回復不要回復") # self.close() def websocket_disconnect(self, message): # 客戶端與服務端斷開連接時,自動觸發。 print("斷開連接") raise StopConsumer()
小結
基於django實現websocket請求,但現在為止隻能對某個人進行處理。
2.0 實現群聊
2.1 群聊(一)
前端:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> .message { height: 300px; border: 1px solid #dddddd; width: 100%; } </style> </head> <body> <div class="message" id="message"></div> <div> <input type="text" placeholder="請輸入" id="txt"> <input type="button" value="發送" onclick="sendMessage()"> <input type="button" value="關閉連接" onclick="closeConn()"> </div> <script> socket = new WebSocket("ws://127.0.0.1:8000/room/123/"); // 創建好連接之後自動觸發( 服務端執行self.accept() ) socket.onopen = function (event) { let tag = document.createElement("div"); tag.innerText = "[連接成功]"; document.getElementById("message").appendChild(tag); } // 當websocket接收到服務端發來的消息時,自動會觸發這個函數。 socket.onmessage = function (event) { let tag = document.createElement("div"); tag.innerText = event.data; document.getElementById("message").appendChild(tag); } // 服務端主動斷開連接時,這個方法也被觸發。 socket.onclose = function (event) { let tag = document.createElement("div"); tag.innerText = "[斷開連接]"; document.getElementById("message").appendChild(tag); } function sendMessage() { let tag = document.getElementById("txt"); socket.send(tag.value); } function closeConn() { socket.close(); // 向服務端發送斷開連接的請求 } </script> </body> </html>
後端:
from channels.generic.websocket import WebsocketConsumer from channels.exceptions import StopConsumer CONN_LIST = [] class ChatConsumer(WebsocketConsumer): def websocket_connect(self, message): print("有人來連接瞭...") # 有客戶端來向後端發送websocket連接的請求時,自動觸發。 # 服務端允許和客戶端創建連接(握手)。 self.accept() CONN_LIST.append(self) def websocket_receive(self, message): # 瀏覽器基於websocket向後端發送數據,自動觸發接收消息。 text = message['text'] # {'type': 'websocket.receive', 'text': '阿斯蒂芬'} print("接收到消息-->", text) res = "{}SB".format(text) for conn in CONN_LIST: conn.send(res) def websocket_disconnect(self, message): CONN_LIST.remove(self) raise StopConsumer()
2.2 群聊(二)
第二種實現方式是基於channels中提供channel layers來實現。(如果覺得復雜可以采用第一種)
setting中配置 。
CHANNEL_LAYERS = { "default": { "BACKEND": "channels.layers.InMemoryChannelLayer", } }
如果是使用的redis 環境
pip3 install channels-redis
CHANNEL_LAYERS = { "default": { "BACKEND": "channels_redis.core.RedisChannelLayer", "CONFIG": { "hosts": [('10.211.55.25', 6379)] }, }, }
consumers中特殊的代碼。
from channels.generic.websocket import WebsocketConsumer from channels.exceptions import StopConsumer from asgiref.sync import async_to_sync class ChatConsumer(WebsocketConsumer): def websocket_connect(self, message): # 接收這個客戶端的連接 self.accept() # 將這個客戶端的連接對象加入到某個地方(內存 or redis)1314 是群號這裡寫死瞭 async_to_sync(self.channel_layer.group_add)('1314', self.channel_name) def websocket_receive(self, message): # 通知組內的所有客戶端,執行 xx_oo 方法,在此方法中自己可以去定義任意的功能。 async_to_sync(self.channel_layer.group_send)('1314', {"type": "xx.oo", 'message': message}) #這個方法對應上面的type,意為向1314組中的所有對象發送信息 def xx_oo(self, event): text = event['message']['text'] self.send(text) def websocket_disconnect(self, message): #斷開鏈接要將這個對象從 channel_layer 中移除 async_to_sync(self.channel_layer.group_discard)('1314', self.channel_name) raise StopConsumer()
好瞭分享就結束瞭,其實總的來講介紹的還是比較淺
如果想要深入一點 推薦兩篇博客
【翻譯】Django Channels 官方文檔 — Tutorial – 守護窗明守護愛 – 博客園
django channels – 武沛齊 – 博客園
到此這篇關於django channels使用和配置及實現群聊的文章就介紹到這瞭,更多相關django channels配置內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- Django使用channels + websocket打造在線聊天室
- Django項目創建的圖文教程
- django redis的使用方法詳解
- 利用Python創建第一個Django框架程序
- Django動態隨機生成溫度前端實時動態展示源碼示例