9

我想用 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 记录我的输入模式和输出模式?

4

2 回答 2

6

您可以使用query_serializer

找到它https://medium.com/@arjunsinghy96/customised-api-documentation-for-django-rest-framework-projects-using-drf-yasg-d6db9ba5cff3

很难从官方文档中得到它。

于 2019-09-21T03:45:52.103 回答
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 中只显示 GET 视图中的参数。

于 2021-07-04T13:19:36.393 回答