我按照说明在我的Swagger文件夹中添加了两个文件“Embedded Resources”:
APIDemo
|
|------ Swagger
|
|----index.html
|----style.css
My SwaggerConfig.cs:
.EnableSwaggerUi(c =>
{
c.InjectStylesheet(thisAssembly, "APIDemo.Swagger.style.css");
c.CustomAsset("index", thisAssembly, "APIDemo.Swagger.index.html");
但是当我运行项目时,我收到以下错误消息:
无法加载资源:服务器响应状态为404(未找到)http://localhost:53670/swagger/ui/lib/underscore-min-js
无法加载资源:服务器响应状态为404(未找到)http://localhost:53670/swagger/ui/lib/handlebars-2-0-0-js
无法加载资源:服务器响应状态为404(未找到)http://localhost:53670/swagger/ui/lib/underscore-min-js
无法加载资源:服务器响应状态为404(未找到)backbone-min-js:3未捕获的TypeError:无法读取未定义的swagger-ui-js:9的属性'
未捕获的ReferenceError:未定义句柄http://localhost:53670/swagger/ui/lib/highlight-7-3-pack-js无法加载资源:服务器响应状态为404(未找到)索引:54
未捕获的ReferenceError:未定义SwaggerUi
可能是什么原因?感谢。