我在ASP.NET Web API项目中的控制器上有以下操作方法:
[Route("api/v2/project/{projectId}/stuff"), HttpGet]
public IHttpActionResult Get(int projectId)
[Route("api/v2/project/{projectId}/stuff/{id:guid}"), HttpGet]
public IHttpActionResult Get(int projectId, [FromUri] Guid id)
[Route("api/v2/project/{projectId}/stuff"), HttpPost]
public IHttpActionResult Post(int projectId, [Required] Stuff stuff)
[Route("api/v2/project/{projectId}/stuff/{id:guid}"), HttpPut]
public IHttpActionResult Put(int projectId, [FromUri] Guid blastId, Stuff stuff)
[Route("api/v2/project/{projectId}/stuff/{id:guid}"), HttpDelete]
public IHttpActionResult Delete(int projectId, [FromUri] Guid id)
由于javascript错误,我向{/ p>提出了DELETE
请求
api/v2/project/1234/stuff/undefined
即。而不是GUID
的id,我得到了字符串"undefined"
。据我所知,这不应该与我的任何路线匹配,但我没有404 Not found
(甚至是405 Method not allowed
),而是获得了200 OK
作为回复。< / p>
我在每个动作方法中设置了一个断点,并使用Fiddler重复了请求,但没有一个断点被击中。我也尝试从nuget安装WebApiRouteDebugger软件包,但我们正在使用一个自定义控制器工厂,它通过我的DI容器连接起来,所以我根本无法使用它。我甚至尝试从我的全球注册过滤器中抛出以下异常:
throw new Exception(actionContext.ControllerContext.ControllerDescriptor.ControllerName +
" " + actionContext.ActionDescriptor.ActionName);
但是DELETE
请求仍然会传递到200 OK
(对有效网址的请求似乎没有这样做)。
我还能如何解决这个问题?可能是根本原因?
答案 0 :(得分:3)
在您的protected void Application_Start(object sender, EventArgs e)
所在的Global.asax.cs文件中,添加以下内容:
protected void Application_BeginRequest(object sender, EventArgs e)
{
}
所有服务器请求都应该来到这里。
如果没有,请添加这些。
using System.Web.Compilation;
using System.Reflection;
然后在开始请求调用中添加此代码以列出所有活动路由。
string Items = "";
IEnumerable<Assembly> Assemblies = BuildManager.GetReferencedAssemblies().Cast<Assembly>();
foreach (Assembly FoundAssembly in Assemblies)
{
string AssemblyName = FoundAssembly.FullName;
IEnumerable<TypeInfo> Types = FoundAssembly.DefinedTypes.Where(type => type != null && type.IsPublic && type.IsClass && !type.IsAbstract && typeof(ApiController).IsAssignableFrom(type));
foreach (TypeInfo ControllerType in Types)
{
System.Web.Http.Controllers.ApiControllerActionSelector ApiControllerSelection = new System.Web.Http.Controllers.ApiControllerActionSelector();
System.Web.Http.Controllers.HttpControllerDescriptor ApiDescriptor = new System.Web.Http.Controllers.HttpControllerDescriptor(new System.Web.Http.HttpConfiguration(), ControllerType.Name, ControllerType);
ILookup<string, System.Web.Http.Controllers.HttpActionDescriptor> ApiMappings = ApiControllerSelection.GetActionMapping(ApiDescriptor);
foreach (var Maps in ApiMappings)
{
foreach (System.Web.Http.Controllers.HttpActionDescriptor Actions in Maps)
{
Items += "[ controller=" + ControllerType.Name + " action=" + ((System.Web.Http.Controllers.ReflectedHttpActionDescriptor)(Actions)).MethodInfo + "]";
}
}
}
}
这将列出所有控制器及其签名。如果您的URL不适合其中任何一个,则可能必须展开列表以包含非控制器路由。
答案 1 :(得分:2)
我有同样的问题。在我的startup.cs中我有方法
app.Run(async context =>
{
context.Response.ContentType = "text/plain";
await context.Response.WriteAsync("My Api");
});
这导致所有路由都接收到200响应以及字符串。 我只想在启动时显示此响应。这是解决方案。
app.MapWhen(ctx => ctx.Request.Path.Value == "/", StartupPage);
与同一个Startup类中的方法一起
private void StartupPage(IAppBuilder app)
{
app.Run(async (context) =>
{
context.Response.ContentType = "text/plain";
await context.Response.WriteAsync("My Api");
});
}
我在基本网址上发出请求时只返回200 OK消息。
答案 2 :(得分:0)
我不确定您的路由,但我认为您的路由不包含映射操作:
api/v2/project/1234/stuff/undefined
检查web api配置:api/{controller}[/{action}]/{id}
。我想你可能会用你的动作击中另一个路线动作(比如GET)。
P.S。发布您的路线配置以更新答案。