在ASP.NET Core中顯示自訂的錯誤頁面_實用技巧

來源:互聯網
上載者:User

前言

相信每位程式員們應該都知道在 ASP.NET Core 中,預設情況下當發生500或404錯誤時,只返回http狀態代碼,不返回任何內容,頁面一片空白。

如果在 Startup.cs 的 Configure() 中加上 app.UseStatusCodePages(); ,500錯誤時依然是一片空白(不知為何對500錯誤不起作用),404錯誤時有所改觀,頁面會顯示下面的文字:

Status Code: 404; Not Found 

如果我們想實現不管500還是404錯誤都顯示自己定製的友好錯誤頁面,那該怎麼辦呢?

對於500錯誤,我們可以用 app.UseExceptionHandler() 進行截獲;

對於404錯誤,我們可以用 app.UseStatusCodePages() 的增強版 app.UseStatusCodePagesWithReExecute() 進行截獲;

然後轉交給相應的URL進行處理。

app.UseExceptionHandler("/errors/500");app.UseStatusCodePagesWithReExecute("/errors/{0}");

URL 路由到 MVC Controller 中顯示友好錯誤頁面。

public class ErrorsController : Controller{ [Route("errors/{statusCode}")] public IActionResult CustomError(int statusCode) {  if(statusCode == 404)  {   return View("~/Views/Errors/404.cshtml");  }  return View("~/Views/Errors/500.cshtml"); }  }

【更新】

後來發現一個問題,當出現底層異常時,自訂錯誤頁面不能顯示,還是一片空白,比如下面的異常:

System.DllNotFoundException: Unable to load DLL 'System.Security.Cryptography.Native.Apple': The specified module could not be found. (Exception from HRESULT: 0x8007007E)

這時想到用 MVC 顯示自訂錯誤頁面的局限,如果發生的異常導致 MVC 本身不能正常工作,自訂錯誤頁面就無法顯示。

於是針對這個問題進行了改進,針對500錯誤直接用靜態檔案的方式進行響應,Startup.cs 的 Configure() 中的代碼如下:

app.UseExceptionHandler(errorApp =>{ errorApp.Run(async context => {  context.Response.StatusCode = 500;  if (context.Request.Headers["X-Requested-With"] != "XMLHttpRequest")  {   context.Response.ContentType = "text/html";   await context.Response.SendFileAsync($@"{env.WebRootPath}/errors/500.html");  } });});app.UseStatusCodePagesWithReExecute("/errors/{0}");

為了重用自訂錯誤頁面,MVC Controller 中已進行了修改:

public class ErrorsController : Controller{ private IHostingEnvironment _env; public ErrorsController(IHostingEnvironment env) {  _env = env; } [Route("errors/{statusCode}")] public IActionResult CustomError(int statusCode) {  var filePath = $"{_env.WebRootPath}/errors/{(statusCode == 404?404:500)}.html";  return new PhysicalFileResult(filePath, new MediaTypeHeaderValue("text/html")); }  }

總結

以上就是關於ASP.NET Core中顯示自訂錯誤頁面的全部內容了,希望本文的內容對大家的學習或者工作能帶來一定的協助,如果有疑問大家可以留言交流。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.