Versions:
coreapi==2.3.1
Django==1.11.2
django-rest-framework==0.1.0
django-rest-swagger==2.1.2
django-silk==1.0.0
djangorestframework==3.6.3
API端点:/search?filter=("pages")?filter=("people")
在我的SwaggerSchemaView中,我已经按如下方式定义了过滤字段:
coreapi.Field(name="filters", description="=search(query)", location="query", type="array", required=True)
Swagger看起来像这样:
现在,当我在值框中提供值时,会产生格式为api的
/search?filter=("pages"),("people")
我如何能够大摇大摆地尊重我想要的格式
/search?filter=("pages")?filter=("people")
答案 0 :(得分:1)
开箱即用的CoreAPI不支持您所需的内容。在此问题得到修复后,我将会{ - 3}}
但它可以在OpenAPI(Swagger)中使用style
和explode
参数 - https://github.com/core-api/python-openapi-codec/issues/25
我建议编写自己的swagger yaml,而不是从DRF生成它,因为DRF与Swagger不对齐,无法从中提取所有必需的信息。