我一直试图绕过Django的频道,我无法将我的信息发送到我的websocket。
这是我的consumers.py
import logging
from django.contrib.sites.models import Site
from django.utils import timezone
from channels import Group
from .models import *
import json
def send_free(message):
try:
pi = PInformation.objects.get(
pk=message.content.get('pk'),
)
except Parkplatzinformationen.DoesNotExist:
logging.error("PI not found!")
return
try:
message.reply_channel.send({
"text": 1,
})
except:
logging.exception('Problem sending %s' % (pi.name))
我的routing.py
from channels.routing import route
from RESTAPI.consumers import send_free
channel_routing = [
route('send-free',send_free),
]
我收到错误AttributeError: 'NoneType' object has no attribute 'send'
。然而它确实获得了PInformation对象,因此它确实可以运行" bit"。我在保存对象后立即调用它。
答案 0 :(得分:1)
我假设您从这个视图中调用"send-free"
......
Channel('send-free').send({'message': 'your message'})
然后send_free
没有message.reply_channel
...
换句话说,一旦WebSocket packet is sent to us by a client
then消息从中获取reply_channel
属性。这将用于回复消息回客户端...(可能是前端)
所以你真的想发送消息......?然后再次使用消费者发送......