swagger .net core API ambiguous HTTP method for Action Error(动作错误的swagger .net核心API模棱两可的HTTP方法)
问题描述
使用 .net Core 2 API 实现 Swashbuckle/Swagger 我现在在访问 swagger.json 时收到 500 错误:
Implementing Swashbuckle/Swagger with .net Core 2 API I am now receiving the 500 error when accessing swagger.json:
NotSupportedException:不明确的 HTTP 操作方法 -EBisAPI.Controllers._class.HandleError (EBisAPI).行动需要一个Swagger 的显式 HttpMethod 绑定
NotSupportedException: Ambiguous HTTP method for action - EBisAPI.Controllers._class.HandleError (EBisAPI). Actions require an explicit HttpMethod binding for Swagger
我浏览了所有控制器,并查看了每个控制器的所有公共方法的显式路由.有没有办法确定哪个方法引发了不明确的路由错误?
I have gone through all the controllers and see explicit routing on all the public methods of each controller. Is there a way to determine which method is throwing the ambiguous routing error?
推荐答案
当方法在控制器中声明为公共但没有 REST 属性时,可能会发生这种情况.将方法更改为 protected 可能会解决问题.
This can occur when a method is declared public in a controller, but without REST attributes. Changing the method to protected may address the issue.
我以前见过这种错误,通常错误消息指向罪魁祸首:EBisAPI.Controllers._class.HandleError
I have seen this kind of error before and usually the error message points to the culprit:
EBisAPI.Controllers._class.HandleError
我猜 HandleError
是您的基类中的 public
方法,对吧?将其更改为 protected
并重试.
I guess HandleError
is a public
method in your base class, right? Change it to protected
and try again.
这当然只是一种可能的解决方案.如果错误消息中提到的方法是接口实现的一部分,则它不起作用,您需要查看其他解决方案之一.
This is of course only one possible solution. If the method which is mentioned in the error message is part of an interface implementation, it doesn't work and you need to look at one of the other solutions.
这篇关于动作错误的swagger .net核心API模棱两可的HTTP方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:动作错误的swagger .net核心API模棱两可的HTTP方法


- 输入按键事件处理程序 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04