本文介绍了从QueryDict中提取项目的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个类似于下面的querydict:
I have a querydict that looks like the following:
<QueryDict: {u'{"content":"aa","id":"1"}': [u'']}>
我将如何提取 id
?
我尝试做 queryDictExample.get( id)
,但是没有用。
I have tried doing queryDictExample.get("id")
, but it didn't work.
推荐答案
似乎您的客户端正在发布JSON,而不是经过格式编码的数据。代替访问 request.POST
,使用 request.body
( request.raw_post_data
(版本1.3或更低版本),并使用 json.loads()
转换为字典。
It seems like your client is posting JSON rather than formencoded data. Instead of accessing request.POST
, use request.body
(request.raw_post_data
in versions 1.3 or less) and use json.loads()
to convert to a dict.
这篇关于从QueryDict中提取项目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!