.netcore Swagger 生成 api接口文档
2021-06-19 13:04
标签:文档 point bsp include col 方法 sem 接口 最简 1, 引用第三方包, Swashbuckle.AspNetCore Swashbuckle.AspNetCore.Swagger Swashbuckle.AspNetCore.SwaggerUI 最简单方法复制: 2. startup.cs 3 4. Controllers 对外action 加上请求方式 访问地址:http://localhost:{端口}/swagger/index.html .netcore Swagger 生成 api接口文档 标签:文档 point bsp include col 方法 sem 接口 最简 原文地址:https://www.cnblogs.com/Yang33033/p/10283353.html
//swagger
services.AddSwaggerGen(c =>
{
c.SwaggerDoc("v1", new Info
{
Version = "v1",
Title = typeof(Startup).GetTypeInfo().Assembly.GetName().Name
});
});
app.UseSwagger().UseSwaggerUI(c =>
{
c.SwaggerEndpoint("/swagger/v1/swagger.json", typeof(Startup).GetTypeInfo().Assembly.GetName().Name + "-v1");
});
[HttpPost] [HttpGet]...
文章标题:.netcore Swagger 生成 api接口文档
文章链接:http://soscw.com/index.php/essay/95955.html