我正在使用DRF-YASG在Swagger中记录API,并希望自定义/消除参数中显示的某些字段
我正在使用Django 2.1.7,DRF 3.9.2和DRF-YASG 1.14.0运行该项目。
因此,我想消除swagger-ui中显示的ID(如“ string”和“ path”),因为我通过Schema将它包含在主体请求中,但是swagger-ui显示了id(自动生成的字段)中的参数。
在下面的屏幕中,您可以看到问题:
https://user-images.githubusercontent.com/5421182/54859641-70359d00-4cee-11e9-9b12-79ab57d12495.png
这里,我的代码...
request_category_put = openapi.Schema(type=openapi.TYPE_OBJECT, required=['id','name'],
properties={
'id': openapi.Schema(type=openapi.TYPE_INTEGER,
title='Id', readOnly=True,
description='Id of the category'), ### <-- I have the ID here.
'name': openapi.Schema(type=openapi.TYPE_STRING,
title='Category', maxLength=200, minLength=1,
description='Name of the category')
},
example={
'id' : 1,
'name' : 'Business',
}
)
class CategoryDetail(APIView):
permission_classes = (IsAuthenticatedOrReadOnly,)
@swagger_auto_schema(
manual_parameters=[authorization],
request_body=request_category_put,
responses = {
'200' : response_category,
'400': 'Bad Request',
'404': 'Not found'
},
security=[security_endpoint],
operation_id='Update category',
operation_description='Update a specific category.',
)
def put(self, request, pk, format=None):
category = get_object_or_404(Category, pk=pk)
serializer = CategorySerializer(category, data=request.data)
if serializer.is_valid():
serializer.save(modified_by=self.request.user)
return Response(serializer.data, status=status.HTTP_200_OK)
return Response(serializer.errors, status=status.HTTP_400_BAD_REQUEST)
当我在manual_parameters
的{{1}}中添加字段时,只需更改其属性...但该字段仍然存在。
答案 0 :(得分:0)
看一下如何实现manual_parameters
的代码,这看起来不太可能。看到:
drf_yasg.inspectors.view.get_operation()
def get_operation(self, operation_keys=None):
operation_keys = operation_keys or self.operation_keys
consumes = self.get_consumes()
produces = self.get_produces()
body = self.get_request_body_parameters(consumes)
query = self.get_query_parameters()
parameters = body + query
parameters = filter_none(parameters)
parameters = self.add_manual_parameters(parameters)
在该函数中,有一个对add_manual_parameters()
的调用,该调用只会将您指定的替代添加到现有的参数列表中。因此,您必须添加一个选项来替换现有的参数或添加一个新的manual_overrides_remove来删除特定的参数。我建议在drf_yasg github页上提出问题,或提交PR以添加此功能。
答案 1 :(得分:0)
尝试在序列化器元字段 read_only_fields
喜欢
class SomeSerializer(ModelSerializer):
...
class Meta:
...
read_only_fields = ["id", ...]