我正在使用drf-spectacular来生成 swagger/redoc API 文档。
最有用的功能之一是能够通过生成的 swagger html 页面测试请求,但我想强制执行application/x-www-form-urlencoded内容类型,以便当我的 Django 端点收到请求时,request.data具有编码数据,而不是作为查询字符串的一部分。drf-spectacular 似乎总是默认查询字符串,例如/objects/action/?key=value
我想出如何做到这一点的唯一方法是将序列化程序与请求内容类型结合使用,例如
@extend_schema(
request={'application/x-www-form-urlencoded': DoTheActionInputsSerializer},
responses={200: DoTheActionOutputsSerializer},
methods=["POST"]
)
@action(methods=['post'], detail=False)
def do_the_action(self, request, *args, **kwargs):
...
这很好用,但它确实需要很多可能只有一两个属性的小型序列化程序。在 extend_schema 装饰器中是否有另一种方法可以实现这一点?
我希望像下面这样的东西会起作用,但没有
request={'application/x-www-form-urlencoded': {'schema': {'foo_id': OpenApiTypes.INT}}},