英文:
Add copy button to swagger in .Net Core 6 web API
问题
我使用.NET Core 6构建了一个REST API,并添加了Swagger UI。当我运行API时,在悬停在路由上时,我看不到复制到剪贴板按钮。我该如何添加它?
这些是我的已安装包:
英文:
I built a REST API with .net core 6 and added swagger UI to it.
When I run the API, I don't see the copy-to-clipboard button when I hover over the routes.
How do I add it?
These are my installed packages:
答案1
得分: 0
6.5.0版本的Swashbuckle.AspNetCore上不知何故未显示复制按钮。我将其降级到6.4.0版本,现在图标显示正常。
英文:
For some reason, the copy button not showing on 6.5.0 version of Swashbuckle.AspNetCore. I downgraded it to 6.4.0 and now the icon is there.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论