iam尝试使用渠道但无法正常工作
这是consumer.py
def ws_connect(message, cat_id):
try:
cat = Categories.objects.get(pk=cat_id)
except Categories.DoesNotExist:
pass
Group('cat-1').add(message.reply_channel)
def ws_diconnect(message, cat_id):
try:
cat = Categories.objects.get(pk=cat_id)
except Categories.DoesNotExist:
pass
Group('cat-1').discard(message.reply_channel)
这是routing.py:
channel_routing = [
route('websocket.receive', ws_connect, path=r'^/liveupdate/(?P<cat_id>\d+)/'),
route("websocket.disconnect", ws_diconnect, path=r'^/liveupdate/(?P<cat_id>\d+)/'),
]
这是signals.py:
@receiver(post_save, sender=Tender)
def send_update(sender, instance, created, raw, using, **kwargs):
print '>>>>>>>>>>>>>>>>>>>>>>>>>>>>', instance, '2', raw, '3', using, '4', kwargs
data = json.dumps(
{'ministry': 'hisham',})
Group('cat-1').send({'tender': data,})
print 'Done'
这是javascript:
<script type="application/javascript">
var ws_scheme = window.location.protocol == "https:" ? "wss" : "ws";
alert(ws_scheme +"://" + window.location.host + "/liveupdate/1/");
var socket = new WebSocket(ws_scheme +"://" + window.location.host + "/liveupdate/1/");
socket.onmessage = function(e) {
alert(e.data);
};
socket.onopen = function() {
console.log("Connected to socket");
};
socket.onclose = function() { console.log("Disconnected to socket"); }
</script>
当iam tring挽救温柔的信号火但在浏览器中什么也没有时
即没有数据警报
我的代码有什么问题
有任何想法吗
这是我的文件夹:
最佳答案
代替websocket.receive,使用websocket.connect。客户端向服务器发送数据时使用接收。
route('websocket.connect', ws_connect, path=r'^/liveupdate/(?P<cat_id>\d+)/'),
在何时发送数据而不是招标时,请使用文本作为密钥。
Group('cat-1').send({'text': data,})
关于javascript - django channel 无法正常运作我已阅读文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37872611/