我正在寻求帮助。我的django服务器具有django-socketio实现的即时消息功能。如果我通过cmd'rowserver_socketio'运行服务器,那么没有问题。 但现在我想通过'runfcgi'来运行服务器,但这会使我的socketio无法正常工作。所以我希望socketio服务器处理由fcgi服务器传达的请求。可以吗? 以下是我的代码:
def push_msg(msg): params = urllib.urlencode({"msg":str(msg)}) '''headers = {"Content-type":"text/html;charset=utf8"} conn = httplib.HTTPConnection("http://127.0.0.1:8000") print conn conn.request("POST", "/push_msg/", data=params, headers=headers) response = conn.getresponse() print response''' h = httplib2.http() print h resp, content = h.request("http://127.0.0.1:8000/push_msg/", method="POST", body=params) url(r'^push_msg/$', 'chat.events.on_message') chat.events.on_message: def on_message(request): msg = request.POST.get('msg') msg = eval(msg) try: print 'handle messages' from_id = int(msg['from_id']) to_id = int(msg['to_id']) user_to = UserProfile.objects.get(id = msg['to_id']) django_socketio.broadcast_channel(msg, user_to.channel) if msg.get('type', '') == 'chat': ct = Chat.objects.send_msg(from_id=from_id,to_id=to_id,content=data['content'],type=1) ct.read = 1 ct.save() except: pass return HttpResponse("success")
我已经尝试了很多次,但它不起作用,为什么?
答案 0 :(得分:2)
1)当然Django可以向另一台服务器发出请求
我对django-socketio
还有一个建议,为什么你使用httplib,你可以使用其他高级版本,如httplib2
或Django-Piston
以外的请求专用于REST
请求你也可以尝试使用< / p>