python - 如何将模型字段传递给 JsonResponse 对象

标签 python json django httpresponse

Django 1.7 引入了 JsonResponse objects ,我尝试使用它来将值列表返回给我的 ajax 请求。

我想通过

>>> Genre.objects.values('name', 'color')
[{'color': '8a3700', 'name': 'rock'}, {'color': 'ffff00', 'name': 'pop'}, {'color': '8f8f00', 'name': 'electronic'}, {'color': '9e009e', 'name': 'chillout'}, {'color': 'ff8838', 'name': 'indie'}, {'color': '0aff0a', 'name': 'techno'}, {'color': 'c20000', 'name': "drum'n'bass"}, {'color': '0000d6', 'name': 'worldmusic'}, {'color': 'a800a8', 'name': 'classic'}, {'color': 'dbdb00', 'name': 'hiphop'}]

到一个 JsonResponse 对象。

但是,我的尝试失败了。

>>> JsonResponse({'foo': 'bar', 'blib': 'blab'}) # works
<django.http.response.JsonResponse object at 0x7f53d28bbb00>

>>> JsonResponse(Genre.objects.values('name', 'color')) # doesn't work
Traceback (most recent call last):
  File "<console>", line 1, in <module>
  File "/home/marcel/Dokumente/django/FlushFM/env/lib/python3.4/site-packages/django/http/response.py", line 476, in __init__
    raise TypeError('In order to allow non-dict objects to be '
TypeError: In order to allow non-dict objects to be serialized set the safe parameter to False

这可能是由于Genre.objects.values()的数据结构不同。

如何正确地做到这一点?

[编辑]

使用 safe=False 我得到

>>> JsonResponse(Genre.objects.values('name', 'color'), safe=False)
Traceback (most recent call last):
  File "<console>", line 1, in <module>
  File "/home/marcel/Dokumente/django/FlushFM/env/lib/python3.4/site-packages/django/http/response.py", line 479, in __init__
    data = json.dumps(data, cls=encoder)
  File "/usr/lib/python3.4/json/__init__.py", line 237, in dumps
    **kw).encode(obj)
  File "/usr/lib/python3.4/json/encoder.py", line 192, in encode
    chunks = self.iterencode(o, _one_shot=True)
  File "/usr/lib/python3.4/json/encoder.py", line 250, in iterencode
    return _iterencode(o, 0)
  File "/home/marcel/Dokumente/django/FlushFM/env/lib/python3.4/site-packages/django/core/serializers/json.py", line 109, in default
    return super(DjangoJSONEncoder, self).default(o)
  File "/usr/lib/python3.4/json/encoder.py", line 173, in default
    raise TypeError(repr(o) + " is not JSON serializable")
TypeError: [{'color': '8a3700', 'name': 'rock'}, {'color': 'ffff00', 'name': 'pop'}, {'color': '8f8f00', 'name': 'electronic'}, {'color': '9e009e', 'name': 'chillout'}, {'color': 'ff8838', 'name': 'indie'}, {'color': '0aff0a', 'name': 'techno'}, {'color': 'c20000', 'name': "drum'n'bass"}, {'color': '0000d6', 'name': 'worldmusic'}, {'color': 'a800a8', 'name': 'classic'}, {'color': 'dbdb00', 'name': 'hiphop'}] is not JSON serializable

什么是有效的

>>> JsonResponse(list(Genre.objects.values('name', 'color')), safe=False)
<django.http.response.JsonResponse object at 0x7f53d28bb9e8>

但是没有更好的方法来从 Model 对象生成字典吗?

最佳答案

为了将来引用,.values() 返回一个 ValuesQuerySet,其行为类似于一个充满字典的可迭代对象,因此使用 list()将创建一个 list 的新实例,其中包含所有字典。有了它,您可以创建一个新的 dict 并对其进行序列化。

response = JsonResponse(dict(genres=list(Genre.objects.values('name', 'color'))))

IIRC,拥有一个以列表为根的 JSON 对象是不安全的,这可能就是 Django 提示的原因。我现在找不到任何关于此的引用资料来提供来源,抱歉。

关于python - 如何将模型字段传递给 JsonResponse 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26067369/

相关文章:

python - Pandas 数据框的列表列表

python - 为什么鼠标悬停数据消失

android - 无法在 SwipeFlingAdapterView 中显示项目

Python Pandas DataFrame JSON 转换器列表错误

javascript - VM299 :1 Uncaught SyntaxError: Unexpected token u in JSON at position 0 at JSON. 解析(<匿名>)

jquery - 如何在 Django 和 Jquery 中使用 model.Form 通过 Ajax 发送数据

python - Pylint 为每个变量提示 'Undefined variable'

python - FormName 没有属性 'error_messages'

python - 将查询集转换为包含 JSON 值的字典

python - 导入错误: No module named menu