Responses 怎么能展示 该接口返回的实体
就是展示api返回的对象
请参考 https://docs.microsoft.com/zh-cn/aspnet/core/tutorials/getting-started-with-swashbuckle?view=aspnetcore-3.1&tabs=visual-studio
返回得都是字符串,你还想怎么展示?
可以配置后 将返回的对象展示UI
配置一下返回的model,加上xml描述
这个我是配置了的 展示了的 就是我想将返回的实体对象也能展示
把你返回 Task<ActionResult> 改为 Task<Model> 就可以了, 如果是 ActionResult 就改为 Model
已解决