gpt4 book ai didi

python - Django 的 Querydict 异常行为 : bunches POST dictionary into a single key

转载 作者:太空狗 更新时间:2023-10-30 00:52:02 24 4
gpt4 key购买 nike

在 Django 中使用测试客户端时,我遇到了一个非常奇怪的行为。

我正在使用 POST 将数据发送到我的 Django 应用程序。我通常通过 iPhone 应用程序和/或测试 html 表单执行此操作。在服务器端,我是这样处理的:

def handle_query(request):
print request
q = con.QueryLog()
q.ID = request.POST.get('ID', '')
q.device = request.POST.get('device-model', '')
....

打印语句看起来像你所期望的,即 post 请求中的每个参数都变成了字典中的键:

POST: QueryDict: {u'app-version': [u'3.0'], u'server-version': [u'v3d0'],

但是,我开始使用 Django 的测试客户端编写一些测试,无论我尝试什么,我在 post 请求中发送的 POST 参数字典都被打包到 QueryDict 中的一个键中。请允许我用一些代码来说明:

类搜索测试(测试用例): 定义设置( self ): 通过

def test_search(self):
request = HttpRequest()
data = '{"amzn_locale": "com"}'
# request._raw_post_data = data
resp = self.client.post(
'/is/',
data=data,
content_type='application/x-www-form-urlencoded',
# content_type='application/json',
)

服务器端的相同打印语句显示字典莫名其妙地分组为一个字符串:

POST: QueryDict: {u'{"amzn_locale":"com"}': [u'']}>,

如果我将数据设置为一个实际的字典,同样的事情

data = {"amzn_locale": "com"}

设置 request._raw_post_data 不会改变任何东西。也不改变

content_type='application/json'

任何帮助将不胜感激。从这个 stackoverflow 问题看来我不是第一个遇到这个问题的人 iphone Json POST request to Django server creates QueryDict within QueryDict

最佳答案

问题在于您提供的是 content_type。既然你这样做了,客户就期待一个像

这样的 urlencoded 字符串
"username=hi&password=there&this_is_the_login_form=1"

而不是字典

{'username': 'hi', 'password': 'there', 'this_is_the_login_form': 1}

如果您删除 content_type kwarg,您会没事的。

编辑:事实证明,如果您传入 MULTIPART_CONTENT 以外的任何 content_type,测试客户端将查找 url 编码的字符串- content_type 将仅用于确定使用什么字符集来编码该 url 编码的字符串。这记录在案 here .相关位如下:

If you provide content_type (e.g., text/xml for an XML payload), the contents of data will be sent as-is in the POST request, using content_type in the HTTP Content-Type header.

If you don't provide a value for content_type, the values in data will be transmitted with a content type of multipart/form-data. In this case, the key-value pairs in data will be encoded as a multipart message and used to create the POST data payload.

关于python - Django 的 Querydict 异常行为 : bunches POST dictionary into a single key,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6315960/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com