作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的 drf 的响应仅包含单个序列化程序给出的数据,我们可以将其实现为:
@swagger_auto_schema(
operation_id='ID example',
operation_description="Description example.",
responses={status.HTTP_200_OK: Serializer4ModelA(many=True)},
)
response = {
"a": serializer_data_for_model_a,
"b": serializer_data_for_model_b,
"c": serializer_data_for_model_c
}
@swagger_auto_schema(
operation_id='ID example',
operation_description="Description example.",
responses={status.HTTP_200_OK: openapi.Response(
description='response description',
schema=openapi.Schema(
type=openapi.TYPE_OBJECT,
properties={
'a': Serializer4ModelA(many=True),
'b': Serializer4ModelB(many=True),
'c': Serializer4ModelC(many=True)
})
)}
)
flex
说:
"/usr/local/lib/python3.6/site-packages/flex/utils.py", line 125, in
get_type_for_value raise ValueError("Unable to identify type of
{0}".format(repr(value)))
ValueError: Unable to identify type of
Serializer4ModelA(many=True):
最佳答案
我通常做的是创建另一个序列化程序(只是为了让 drf-yasg 可以生成文档)。
例如,如果我有一个返回的端点:
{
"results": [..list of serialized results with serializer X...]
}
class Y(serializers.Serializer):
results = X(many=True)
Y
swagger_auto_schema 装饰器中的序列化器。
关于django - 使用 drf-yasg,如何在响应中支持多个序列化程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53825452/
我是一名优秀的程序员,十分优秀!