swagger-php我集成到thinkphp中,但是post提交接收不到值
关于文档注释post提交怎么写?看了注释,还是不行??
/**
* @SWG\Post(
* path="/addPets",
* tags={"Test"},
* operationId="addPets",
* summary="Add a new pet to the store",
* description="",
* consumes={"multipart/form-data"},
* produces={"multipart/form-data"},
* @SWG\Parameter(
* name="name",
* in="query",
* description="Pet object that needs to be added to the store",
* required=false,
* paramType="form",
* @SWG\Schema(ref="#/definitions/Pet"),
* ),
* @SWG\Response(
* response=405,
* description="Invalid input",
* ),
* security={{"petstore_auth":{"write:pets", "read:pets"}}}
* )
*/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
找了好久,终于知道了 in="formData"