0

HttpRequestを特定のビュー関数にルーティングするurls.pyがあります。これらのビュー関数はすべて、ディクショナリオブジェクトを返します。これらすべての戻りオブジェクトを、JsonにダンプしてHttpResponseでラップする関数に渡すにはどうすればよいですか?

ありがとう

4

3 に答える 3

3

おそらくrender_decoratorが必要です。使用法:

@render('index.html', ('json',))
def my_view(request)
    #do something
    return {'key': 'value'}

または、このスニペットは、辞書を返し、JSON ビューを取得する関数で使用されます。

于 2012-08-27T09:35:32.217 に答える
0

サブクラス化はHttpResponseどうですか?ビューでこれを使用してjsonを返します:

import simplejson
from django.http import HttpResponse

class JsonResponse(HttpResponse):
    def __init__(self, data):
        super(JsonResponse, self).__init__(
            content=simplejson.dumps(data),
            mimetype='application/json; charset=utf8')
于 2012-08-27T21:14:51.070 に答える
0

Django ミドルウェアを使用して応答オブジェクトを処理します。process_responseカスタム ミドルウェアにメソッドを実装します。ビューによって作成されたディクショナリを使用して、必要な json に変換します。次に、受信した実際の応答がjsonであることを確認する以下の関数に渡します。

def render_json_response(data):
    """Sends an HttpResponse with the X-JSON header and the right mimetype."""
    resp = HttpResponse(data, mimetype=("application/json;"))
    resp['X-JSON'] = data
    return resp

Django Annoyingプロジェクトでこれajax_request decorator - returns JsonResponse with dict as contentが利用可能であることも発見しました

于 2012-08-27T14:36:01.053 に答える