- ASP.NET Core 教程
- ASP.NET Core - 首页
- ASP.NET Core - 概述
- ASP.NET Core - 环境设置
- ASP.NET Core - 新建项目
- ASP.NET Core - 项目布局
- ASP.NET Core - Project.Json
- ASP.NET Core - 配置
- ASP.NET Core - 中间件
- ASP.NET Core - 异常
- ASP.NET Core - 静态文件
- ASP.NET Core - 设置 MVC
- ASP.NET Core - MVC 设计模式
- ASP.NET Core - 路由
- ASP.NET Core - 属性路由
- ASP.NET Core - 操作结果
- ASP.NET Core - 视图
- 设置 Entity Framework
- ASP.NET Core - DBContext
- ASP.NET Core - Razor 布局视图
- ASP.NET Core - Razor 视图启动
- ASP.NET Core - Razor 视图导入
- ASP.NET Core - Razor 标签助手
- ASP.NET Core - Razor 编辑表单
- ASP.NET Core - 身份概述
- ASP.NET Core - 授权属性
- 身份配置
- ASP.NET Core - 身份迁移
- ASP.NET Core - 用户注册
- ASP.NET Core - 创建用户
- ASP.NET Core - 登录和注销
- ASP.NET Core 有用资源
- ASP.NET Core - 快速指南
- ASP.NET Core - 有用资源
- ASP.NET Core - 讨论
ASP.NET Core - 异常
在本章中,我们将讨论异常和错误处理。当您的 ASP.NET Core 应用程序中发生错误时,您可以通过多种方式处理它们。让我们看看诊断包中提供的另一部分中间件。这部分中间件将帮助我们处理错误。
为了模拟错误,让我们转到app.Run,看看如果每次我们点击这部分中间件时都抛出一个异常,应用程序的行为如何。
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 行抛出了一个未处理的异常。
您还可以查看原始异常详细信息,所有这些信息对于开发人员都非常有用。事实上,我们可能只希望在开发人员运行应用程序时显示此信息。
广告