這篇文章主要介紹了關於從django的中間件直接返回請求的方法,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下
實例如下所示:
#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的中間件直接返回請求的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!