码迷,mamicode.com
首页 > Web开发 > 详细

.net core 3.0 swagger

时间:2020-02-24 09:16:06      阅读:65      评论:0      收藏:0      [点我收藏+]

标签:name   startup   use   图片   start   configure   swa   not found   net   

1.安装swagger包

2.startup里configservers

技术图片

 

 

 Configure

技术图片

 

 

 3.可能出现的错误

提示error  xxxxnot found

由于我创建的webapi是restful风格的所以当出现多个同类型的接口时会出错【其实就是找不到哪一个接口】

解决方法:

a.在接口上指定路由,比如[Route("xxx")]或[httpget("xxx/xxx/{id}")]

b.由于我实在是不喜欢restful的接口所以我在startup上指定了路由

app.UseEndpoints(endpoints =>
            {
                endpoints.MapControllerRoute(
                    name: "default",
                    pattern: "{controller=WeatherForecast}/{action=Get}/{id?}");
            });

 

.net core 3.0 swagger

标签:name   startup   use   图片   start   configure   swa   not found   net   

原文地址:https://www.cnblogs.com/weiruanojbk/p/12355433.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!