liuzhihang / doc-view

IDEA 插件 Doc View 的仓库地址

Home Page:https://plugins.jetbrains.com/plugin/15305-doc-view

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

未能识别到 @RequestParam("file") MultipartFile file

dawnings opened this issue · comments

Bug 描述
文档中未能生成 MultipartFile file 参数

Version

  • Doc View: [ v1.2.8]
  • IDEA [2022.1]

Bug 详情

    @PostMapping("/audio")
    public Results<Dto> audio(@RequestHeader("accessToken") String accessToken, @RequestParam("file") MultipartFile file, Bo bo) throws Exception {
        return service.audio(Mapper.INSTANCE.to(bo), file);
    }

以上代码生成的文档,会丢失file 这个参数