我正在尝试捕获ASP中的路由错误。. NET Core Web API项目。
具体来说,通过路由错误,我的意思是例如:在控制器中我只有:
// GET api/values/5
[HttpGet("{id}")]
public string Get(int id)
{
return "value";
}
但是请求是:
api/values/5/6
404是自动返回的,但我希望能够在代码中处理这个(即调用某种异常处理例程)。
我试了三种不同的方法都没有成功:
在ConfigureServices(IServiceCollection services)中,我添加了:
services.AddMvc(config =>
{
config.Filters.Add(typeof(CustomExceptionFilter));
});
这捕获控制器中发生的错误(例如,如果我在上面的Get(id)方法中放入throw()),但不会捕获路由错误。我认为这是因为没有找到匹配的控制器方法,所以错误沿着中间件管道传播。
在尝试处理管道上的错误时,我尝试…
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
{
loggerFactory.AddConsole(Configuration.GetSection("Logging"));
loggerFactory.AddDebug();
app.UseExceptionHandler(
options =>
{
options.Run(
async context =>
{
var ex = context.Features.Get<IExceptionHandlerFeature>();
// handle exception here
});
});
app.UseApplicationInsightsRequestTelemetry();
app.UseApplicationInsightsExceptionTelemetry();
app.UseMvc();
}
我也试过:
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
{
loggerFactory.AddConsole(Configuration.GetSection("Logging"));
loggerFactory.AddDebug();
app.Use(async (ctx, next) =>
{
try
{
await next();
}
catch (Exception ex)
{
// handle exception here
}
});
app.UseApplicationInsightsRequestTelemetry();
app.UseApplicationInsightsExceptionTelemetry();
app.UseMvc();
}
当发生路由错误时,上述两者似乎都没有被调用。我用错方法了吗?或者这些方法中的一种真的有效吗?
如有任何建议,我将不胜感激。
感谢克里斯p。我对ASP比较陌生。. NET Web API,所以请原谅我可能使用了稍微错误的术语。
您可以使用UseStatusCodePages
扩展方法:
app.UseStatusCodePages(new StatusCodePagesOptions()
{
HandleAsync = (ctx) =>
{
if (ctx.HttpContext.Response.StatusCode == 404)
{
//handle
}
return Task.FromResult(0);
}
});
编辑
app.UseExceptionHandler(options =>
{
options.Run( async context =>
{
var ex = context.Features.Get<IExceptionHandlerFeature>();
// handle
await Task.FromResult(0);
});
});
app.UseStatusCodePages(new StatusCodePagesOptions()
{
HandleAsync = (ctx) =>
{
if (ctx.HttpContext.Response.StatusCode == 404)
{
// throw new YourException("<message>");
}
return Task.FromResult(0);
}
});