当前位置: 移动技术网 > IT编程>脚本编程>Python > 从django的中间件直接返回请求的方法

从django的中间件直接返回请求的方法

2018年08月20日  | 移动技术网IT编程  | 我要评论

兽人星球之兽性之血,极致情缘约会网,fpc123人才网

实例如下所示:

#coding=utf-8
import json
import gevent
from django.http import httpresponse
from sdsom.web.recorder import get_event_type
from sdsom.web.recorder import get_request_event_info
from sdsom.db.rpcclient import get_db_client
class recordeventmiddleware(object) :
 def process_view(self, request, view, args, kwargs) :
 etype = get_event_type(request)
 if not etype :
  return none
 info = get_request_event_info(request, etype)
 info['status'] = "begin"
 try:
  get_db_client().add_event_record(info)
 except :
  return httpresponse(
   json.dumps({"susscess":0, "message":"记录事件开始到数据库出错"}),
   content_type='application/json'
   )
 return none

如上代码所示,需要从django的http模块导入httpresponse类,

然后返回的时候可以把自己想要返回的字典内容用jsondump一把(如果不dump,上一层会处理报错)。

以上这篇从django的中间件直接返回请求的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持移动技术网。

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网