标签: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?}"); });
标签:name startup use 图片 start configure swa not found net
原文地址:https://www.cnblogs.com/weiruanojbk/p/12355433.html