swagger返回参数的注释

.net core3.0 webapi

首先安装包Swashbuckle.AspNetCore.Annotations

然后在Startup配置swagger地方加上一句代码

i.EnableAnnotations();//注释

使用的话在控制器的方法中加上

[SwaggerResponse(0,"文档注释",typeof(Product))]

注意这个typeof的参数就是你要返回的类型

swagger返回参数的注释_第1张图片

这样配置之后一般是能够看到注释的,如果看不到可以看我另一篇博客,如果需要了解参数注释的更多信息请前往官方的Github文档https://github.com/domaindrivendev/Swashbuckle.AspNetCore#assign-explicit-operationids

你可能感兴趣的:(.Net,Core)