c# – ASP.Net 5 MVC 6,如何使用共享的Error.cshtml作为默认错误响应

c# – ASP.Net 5 MVC 6,如何使用共享的Error.cshtml作为默认错误响应,第1张

概述ASP.Net 5 MVC 6,如何使用共享的Error.cshtml作为默认错误响应 当使用带有剃刀视图的Microsoft.AspNet.Diagnostics UseExceptionHandler中间件时 如果您查看https://github.com/aspnet/Diagnostics/tree/dev/samples/ExceptionHandlerSample/Startup.cs ASP.Net 5 MVC 6,如何使用共享的Error.csHTML作为默认错误响应

当使用带有剃刀视图的Microsoft.AspNet.Diagnostics UseExceptionHandler中间件时

如果您查看https://github.com/aspnet/Diagnostics/tree/dev/samples/ExceptionHandlerSample/Startup.cs的示例代码
解释如何使用Microsoft.AspNet.Diagnostics ASP.NET 5的ErrorHandler中间件,一个评论说:

//通常你会使用MVC或类似的渲染一个漂亮的页面.

好的,但是怎么做呢?

public class Startup{    public voID Configure(IApplicationBuilder app)    {        // Configure the error handler to show an error page.        app.UseExceptionHandler(errorApp =>        {            // normally you'd use MVC or similar to render a nice page.            errorApp.Run(async context =>            {
解决方法 在启动类中:
app.UseExceptionHandler("/Home/Error");

在HomeController中:

public IActionResult Error(){    var feature = this.httpContext.Features.Get<IExceptionHandlerFeature>();    return VIEw("~/VIEws/Shared/Error.csHTML",feature?.Error);}

Error.csHTML视图可能如下所示:

@model Exception@{    VIEwBag.Title = "Oops!";}<h1 >Oops! an error occurs</h1><h2 >An error occurred while processing your request.</h2>@if (Model != null){    @HTML.ValueFor(model => model.Message)}

该代码是GitHub可用的项目的一部分

总结

以上是内存溢出为你收集整理的c# – ASP.Net 5 MVC 6,如何使用共享的Error.cshtml作为默认错误响应全部内容,希望文章能够帮你解决c# – ASP.Net 5 MVC 6,如何使用共享的Error.cshtml作为默认错误响应所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1261272.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-08
下一篇 2022-06-08

发表评论

登录后才能评论

评论列表(0条)

保存