在我的 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
在旧项目中没有这个问题。为什么现在发生这种情况有什么想法吗?
更新