我有一个像这样的词典:
a = {'status': 1, 'message': "Some message" , data: {'id': 1, 'comment': 'Some comment'}}
现在我将它转换为json,如:
b = json.dumps(b,cls=DjangoJSONEncoder)
return b
现在我正在获取一个api,它会给出如下响应:
fetch(url, {method: 'POST', body: some_data})
.then(response => return response.json())
.then(response => console.log(response))
它给了我类似的东西:
a = {'status': 1, 'message': "Some message" , data: '{'id': 1, 'comment': 'Some comment'}'}
此处status
和message
转换正常,但数据的值应为object
,但它是否正在提供字符串?
这里有什么问题?