Django rest框架输出带有unicode前缀的JSONField

时间:2015-04-29 10:08:30

标签: django-rest-framework python-unicode django-jsonfield

在我的api中,JSONField的输出如下所示:

"custom_content": "{u'key': u'value', u'hej': 1.992}",

应该是:

"custom_content": {"key": "value", "hej": 1.992},

我使用djangorestframework == 3.1.1,jsonfield == 1.0.3,Django == 1.7.4,python 2.7.6

在旧项目中没有遇到此问题。为什么会发生这种情况的任何想法?

更新

解决了这个解决方案:https://stackoverflow.com/a/28200902/632182

0 个答案:

没有答案