parameters 的属性
- in 定义参数类型,是在 body 中还是 url 中,可选值:body,path,query,formdata
- description
- required 是否为必须参数
- type 参数的数据类型
- format 定义具体的数据类型
- default 设置参数默认值
- item 当 type 是“array”时有用
1 | type: "array" |
Post 请求,body 是字符串数组的定义
1 | parameters: |
Urls 是在 definitions 中定义的字符串类型对象,也可以直接在 item 中定义 type
responses 的配置
可以配置写说明,比如 200,400,什么的,如果返回值是个对象,也可以配置返回值对应对象,但是不配置也行,会直接输出出来。