drf-yasg用于GET请求的文档输入和输出序列化器

时间:2019-09-21 03:23:16

标签: django-rest-framework drf-yasg

我想用drf-yasg记录GET请求的输入模式和输出模式。

这似乎并不容易。

     @swagger_auto_schema(
         manual_parameters=[
             openapi.Parameter('cart_id', in_=openapi.IN_QUERY,
                               type=openapi.TYPE_INTEGER)
         ])

上面的代码显示了GET参数,但是以某种方式隐藏了响应模式。

@swagger_auto_schema(methods=['put', 'post'], request_body=UserSerializer)

我不能将request_body用于GET查询参数,仅用于帖子正文

那我怎么用drf-yasg记录我的输入模式和输出模式?

2 个答案:

答案 0 :(得分:0)

答案 1 :(得分:0)

我的 api 视图是:

    class ProductListView(APIView):
        """
            get 1 or list of products for show to users
        """
    
        serializer_class = ProductGetSerializer
        permission_classes = (
            AllowAny,
        )
    
        def get(self, request, product_id=None):
            if product_id is not None:
                product = get_object_or_404(Product.confirmed, pk=product_id)
                srz_data = self.serializer_class(instance=product)
                return Response(data=srz_data.data, status=status.HTTP_200_OK)
    
            products = Product.confirmed.all()
            srz_data = self.serializer_class(instance=products, many=True)
            return Response(data=srz_data.data, status=status.HTTP_200_OK)

我的序列化器也是 ModelSerializer:

class ProductGetSerializer(serializers.ModelSerializer):
    class Meta:
        model = Product
        fields = (
            'id',
            'name',
            'image',
            'category',
            'description',
            'price',
            'stock',
        )

不要在仅获取视图的 drf_yasg 中为我显示参数。