.net core Failed to load API definition 错误
2021-03-21 02:24
标签:style 没有 api efi ima new was src https 最近在使用.net core API,使用了swaggerUI 管理接口,在刚创建应用时候,没有注意到一个细节,一直报错误 Failed to load API definition,如下图: 最后检查了 Startup.cs文件,发现一个细节问题。 原文如下,V1 大写导致的,改成了小写以后,就正常可以运行了。 同时在踩坑的过程中,也遇到了其它问题,可以参考 github上面的解决方案。 转向地址:https://github.com/domaindrivendev/Swashbuckle/issues/971 .net core Failed to load API definition 错误 标签:style 没有 api efi ima new was src https 原文地址:https://www.cnblogs.com/bmyblogs/p/11832327.htmlservices.AddSwaggerGen(option =>
{
//option.SwaggerDoc("V1", new Info() { Title = "API", Version = "V1" });
option.SwaggerDoc("v1", new Info() { Title = "API", Version = "V1" });
}
文章标题:.net core Failed to load API definition 错误
文章链接:http://soscw.com/index.php/essay/66970.html