我目前正在使用ASP.NET Core,如何爲未處理的異常設置404默認頁面或NotFound()
?返回NotFound()或未處理的異常與404頁面
IActionResult Foo()
{
throw new Exception("Message!");
}
IActionResult Bar()
{
return NotFound("Message!");
}
我覺得有一個IApplicationBuilder.UseExceptionHandler
方法來設置一個錯誤頁面,但我不知道如何配置它。
請點擊這裏https://stackoverflow.com/questions/37690114/asp-net-core-how-to-return-a-specific -status-code-and-no-contents-from-control –
@CarlosFerreira這是一個不同的問題。 – MiP