JSONシリアル化できません 質問する

JSONシリアル化できません 質問する

クエリセットをシリアル化するための次のコードがあります。

def render_to_response(self, context, **response_kwargs):

    return HttpResponse(json.simplejson.dumps(list(self.get_queryset())),
                        mimetype="application/json")

そして次は私のget_quersety()

[{'product': <Product: hederello ()>, u'_id': u'9802', u'_source': {u'code': u'23981', u'facilities': [{u'facility': {u'name': {u'fr': u'G\xe9n\xe9ral', u'en': u'General'}, u'value': {u'fr': [u'bar', u'r\xe9ception ouverte 24h/24', u'chambres non-fumeurs', u'chambres familiales',.........]}]

これをシリアル化する必要があります。しかし、シリアル化できないと表示されます<Product: hederello ()>。リストは Django オブジェクトと辞書の両方で構成されているためです。何かアイデアはありますか?

ベストアンサー1

simplejsonjsonDjango オブジェクトではうまく動作しません。

Djangoの組み込みシリアライザーDjango オブジェクトで満たされたクエリセットのみをシリアル化できます。

data = serializers.serialize('json', self.get_queryset())
return HttpResponse(data, content_type="application/json")

あなたの場合、self.get_queryset()内部には Django オブジェクトと辞書が混在しています。

1 つのオプションは、 内のモデル インスタンスを削除しself.get_queryset()、 を使って dicts に置き換えることですmodel_to_dict

from django.forms.models import model_to_dict

data = self.get_queryset()

for item in data:
   item['product'] = model_to_dict(item['product'])

return HttpResponse(json.simplejson.dumps(data), mimetype="application/json")

おすすめ記事