gpt4 book ai didi

rest - Django REST 框架 RequestsClient 内容类型

转载 作者:行者123 更新时间:2023-12-05 08:11:50 25 4
gpt4 key购买 nike

首先感谢您的出色工作,我喜欢使用 Django REST 框架来自动化创建 Web API 端点的所有样板。

我在使用 rest_framework.test.RequestsClient 测试一些 API 端点时遇到了问题。我找到了解决方案,但现在我想知道如何更快地找到解决方案。

问题出在这里: 我尝试使用以下代码测试 PUT API 端点(受请求文档的启发,通过自定义 header 指定内容类型:http://docs.python-requests.org/en/v0.10.7/user/quickstart/#custom-headers):

from rest_framework.test import RequestsClient 
client = RequestsClient()
headers = {'content-type': 'application/json'}
response = client.put(my_url, json.dumps(my_data), headers=self.headers)

并获得状态 415,详细信息如下:

{'detail': '请求中不支持媒体类型“application/octet-stream”。'}

解决方案: 好吧,似乎没有考虑指定的内容类型。在谷歌上的搜索让我找到了这篇通过 put 方法的 content_type kwarg 指定内容类型的 stackoverflow 帖子:django-rest-framework http put failing with 415 on django 1.5

response = client.put(..., content_type='application/json')

问题:

我怎么能更快地发现支持的指定内容类型的方法是通过 content_type kwarg 而不是通过 headers kwarg?我在这里查看了 DRF 源代码:https://github.com/encode/django-rest-framework/blob/master/rest_framework/test.py并且 DjangoTestAdapter 似乎可以通过 header kwarg 指定内容类型:

69   if 'content-type' in request.headers:
70 kwargs['content_type'] = request.headers['content-type']

我累了,我可能错过了什么。我也没有深入研究 DRF 源代码。

感谢您提供任何信息!

最佳答案

使用来自 DRF 的客户端:http://www.django-rest-framework.org/api-guide/testing/#apiclient

from rest_framework.test import APIClient
client = APIClient()
client.post('/notes/', {'title': 'new idea'}, format='json')

关于rest - Django REST 框架 RequestsClient 内容类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48275326/

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