这是在OpenApi中完成编码对象示例的方式 https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.0.md
requestBody:
content:
multipart/mixed:
schema:
type: object
properties:
id:
# default is text/plain
type: string
format: uuid
address:
# default is application/json
type: object
properties: {}
historyMetadata:
# need to declare XML format!
description: metadata in XML format
type: object
properties: {}
profileImage:
# default is application/octet-stream, need to declare an image type only!
type: string
format: binary
encoding:
historyMetadata:
# require XML Content-Type in utf-8 encoding
contentType: application/xml; charset=utf-8
profileImage:
# only accept png/jpeg
contentType: image/png, image/jpeg
headers:
X-Rate-Limit-Limit:
description: The number of allowed requests in the current period
schema:
type: integer
我正在尝试使用swagger-php实现相同的功能。
我不知道如何在encodings
中传递@OA\MediaType
来将test
属性编码为multipart/form-data
,因为默认情况下编码为application/json
EX:
* @OA\Post(
* path="/admin/test",
* summary="Create new Test",
* description="Will attempt to create a new Test",
* tags={"Admin Test"},
* @OA\RequestBody(
* @OA\MediaType(
* mediaType="multipart/form-data",
* encoding={}
* @OA\Schema(
* type="object",
* @OA\Property(
* property="test",
* type="object",
* description="test"
* ref="#/components/schemas/MyTestSchema"
* )
* )
* )
这里有一些示例:
https://github.com/zircote/swagger-php/tree/master/Examples
但是我没有找到关于编码的任何例子
在此处定义字段 https://github.com/zircote/swagger-php/blob/master/src/Annotations/MediaType.php
/**
* A map between a property name and its encoding information.
* The key, being the property name, must exist in the schema as a property.
* The encoding object shall only apply to requestBody objects when the media type is multipart or application/x-www-form-urlencoded.
*/
public $encoding = UNDEFINED;
我尝试过encoding={"recommended"={"contentType"="multipart/form-data"}}
,但没用。
答案 0 :(得分:0)
我认为唯一的解决方案是放置所有字段:
* @OA\Post(
* path="/admin/test",
* summary="Create new Test",
* description="Will attempt to create a new Test",
* tags={"Admin Test"},
* @OA\RequestBody(
* @OA\MediaType(
* mediaType="multipart/form-data",
* @OA\Schema(
* @OA\Property(
* property="test[name]",
* type="string",
* description="name"
* ),
* @OA\Property(
* property="test[desc]",
* type="string",
* description="description"
* )
* )
* )
* )