我正在尝试按照这些说明执行基于Django REST功能的API。
https://github.com/m-haziq/django-rest-swagger-docs
但是,我无法获得该功能中显示的任何参数。这是swagger不显示任何参数的屏幕截图。 https://imgur.com/a/fDITT https://imgur.com/a/n5CDU
更新:这是我想用参数https://imgur.com/a/cLYNF
实现的目标这是我的API代码,我想要" name" swagger中显示的参数 https://gitlab.com/firdausmah/railercom/blob/master/railercomapp/api.py
@api_view(['POST'])
def test_post(request):
# ----- YAML below for Swagger -----
"""
description: This API deletes/uninstalls a device.
parameters:
- name: name
type: string
required: true
location: form
"""
name = request.POST.get('name')
return Response("Data Saved!", status=status.HTTP_201_CREATED)
这是我的pip冻结库与django-rest-swagger-docs https://gist.github.com/anonymous/c5c328b9e4a6ff3f86676fe930440dd2
的工作示例的区别有什么问题,你可以在gitlab中查看整个源代码。感谢。
答案 0 :(得分:0)
我在自述文件中找到了这个
*Input parameters for function based views do not appear:* You might be using
incompatible versions, try using `djangorestframework==3.5.3` and `django-rest-swagger==2.1.1`.
我更新到djangorestframework == 3.5.3并且它可以正常工作