我的应用使用 MVC4 ,实体框架6 。我希望在发生错误时自定义操作返回页面错误(500,404,403)使用MVC上的Filter Action。
目前,我在文件 Global.asax 中使用Application_Error
方法返回页面错误,但是当从AJAX进行操作调用时它无效。
例如:
这是第
页[ExecuteCustomError]
public ActionResult TestAction()
{
Rerurn View();
}
这是AJAX调用后返回的视图
[ExecuteCustomError]
public ActionResult ReturnView()
{
//If return error code, i have return message error here.
return PartialView();
}
答案 0 :(得分:1)
您似乎没有提供错误页面的正确路径。 就像您需要在共享视图文件夹中添加错误页面一样,您可以访问此页面。 如果您的页面位于其他文件夹中,则必须指定错误视图页面的正确路径。 如下所示:
return PartialView("~/Views/ErrorPartialView.cshtml", myModel);
我们还有其他选项可以通过网络调用错误页面。在配置文件中,您可以执行以下设置:
<configuration>
...
<system.webServer>
...
<httpErrors errorMode="Custom" existingResponse="Replace">
<clear />
<error statusCode="400" responseMode="ExecuteURL" path="/ServerError.aspx"/>
<error statusCode="403" responseMode="ExecuteURL" path="/ServerError.aspx" />
<error statusCode="404" responseMode="ExecuteURL" path="/PageNotFound.aspx" />
<error statusCode="500" responseMode="ExecuteURL" path="/ServerError.aspx" />
</httpErrors>
...
</system.webServer>
...
</configuration>
这里我们选择全局异常过滤器:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace MVCGlobalFilter.Filters
{
public class ExecuteCustomErrorHandler : ActionFilterAttribute, IExceptionFilter
{
public void OnException(ExceptionContext filterContext)
{
Exception e = filterContext.Exception;
filterContext.ExceptionHandled = true;
filterContext.Result = new ViewResult()
{
ViewName = "CommonExceptionPage"
};
}
}
}
现在您必须在ExecuteCustomErrorHandler
文件中注册Global.asax
课程:
/// <summary>
/// Application start event
/// </summary>
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
RouteConfig.RegisterRoutes(RouteTable.Routes);
BundleConfig.RegisterBundles(BundleTable.Bundles);
log4net.Config.XmlConfigurator.Configure();
// Calling Global action filter
GlobalFilters.Filters.Add(new ExecuteCustomErrorHandler());
}
您需要在共享文件夹中添加CommonExceptionPage
视图:
CommonExceptionPage.cshtml
:
@{
ViewBag.Title = "Execute Custom Error Handler";
}
<hgroup class="title">
<h1 class="error">Error.</h1>
<h2 class="error">An error occurred while processing your request.</h2>
</hgroup>