這篇文章主要為大家詳細介紹了ASP.NET Core異常和錯誤處理的相關資料,具有一定的參考價值,有興趣的小夥伴們可以參考一下
在這一章,我們將討論異常和錯誤處理。當 ASP.NET Core應用程式中發生錯誤時,您可以以各種不同的方式來處理。讓我們來看看透過新增一個中間件來處理異常情況,這個中間件將幫助我們處理錯誤。
要模擬出錯,讓我們轉到應用程序,運行,如果我們只是拋出異常的話,看看程式是如何運轉的。
using Microsoft.AspNet.Builder; using Microsoft.AspNet.Hosting; using Microsoft.AspNet.Http; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Configuration; namespace FirstAppDemo { public class Startup { public Startup() { var builder = new ConfigurationBuilder() .AddJsonFile("AppSettings.json"); Configuration = builder.Build(); } public IConfiguration Configuration { get; set; } // This method gets called by the runtime. // Use this method to add services to the container. // For more information on how to configure your application, // visit http://go.microsoft.com/fwlink/?LinkID=398940 public void ConfigureServices(IServiceCollection services) { } // This method gets called by the runtime. // Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app) { app.UseIISPlatformHandler(); app.UseRuntimeInfoPage(); app.Run(async (context) => { throw new System.Exception("Throw Exception"); var msg = Configuration["message"]; await context.Response.WriteAsync(msg); }); } // Entry point for the application. public static void Main(string[] args) => WebApplication.Run<Startup>(args); } }
它只會拋出一個非常通用的例外訊息。儲存Startup.cs頁面並執行您的應用程式。
您將看到我們未能載入此資源。出現了一個 HTTP 500 錯誤,內部伺服器錯誤,那個頁面不是很有幫助。它可能很方便得到一些異常訊息。
讓我們新增另一個中間件 UseDeveloperExceptionPage。
// This method gets called by the runtime. // Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app) { app.UseIISPlatformHandler(); app.UseDeveloperExceptionPage(); app.UseRuntimeInfoPage(); app.Run(async (context) => { throw new System.Exception("Throw Exception"); var msg = Configuration["message"]; await context.Response.WriteAsync(msg); }); }
這個中間件與其他的有點不同,其他中間件通常監聽傳入的請求並對請求做一些回應。
UseDeveloperExceptionPage不會如此在意傳入的請求在之後的管道會發生什麼事。
它只是呼叫下一個中間件,然後再等待,看看管道中是否會出現異常,如果有異常,這塊中間件會給你一個關於該異常的錯誤頁面。
現在讓我們再次運行應用程式。將會產生一個如下面的螢幕截圖所示的輸出。
現在如果程式中出現異常,您將在頁面中看到一些想要看到的異常資訊。你也會得到一個堆疊追蹤:這裡可以看到Startup.cs第37行有一個未處理的例外拋出。
所有這些異常資訊對開發人員將非常有用。事實上,我們可能只希望當開發人員運行應用程式時才顯示這些異常資訊。
以上是ASP.NET Core異常與錯誤處理(8)_實用技巧的詳細內容。更多資訊請關注PHP中文網其他相關文章!