4

我有这个代码。

 public ActionResult Index()
 {
        ReceiptModel model = new ReceiptModel();

        try
        {
            model = new ReceiptModel(context);
        }
        catch (BussinessException bex)
        {
            ModelState.AddModelError("Index", bex.MessageToDisplay);
            return View("Index");
        }
        return View(model);
 }

BussinesException ir 从数据库返回,然后显示给用户。每个控制器方法都得加上try-catch语句,有点繁琐。有没有更简单的方法来处理这些异常?

PS所有其他异常都用HandleExceptionAttribute

更新:

我使用了 Floradu88 方法。所以现在我有这样的东西。

public sealed class HandleBussinessExceptionAttribute : HandleErrorAttribute, IExceptionFilter
    {

        public override void OnException(ExceptionContext filterContext)
        {
            filterContext.Controller.TempData["UnhandledException"] = filterContext.Exception;
            filterContext.ExceptionHandled = true;

            ((Controller)filterContext.Controller).ModelState.AddModelError(
                 ((BussinessException)filterContext.Exception).Code.ToString(),
                 ((BussinessException)filterContext.Exception).MessageToDisplay
             );

            filterContext.Result = new ViewResult
            {
                ViewName = this.View,
                TempData = filterContext.Controller.TempData,
                ViewData = filterContext.Controller.ViewData,
            };


        }
    }

在控制器动作上我放了

[HandleBussinessExceptionAttribute(Order = 2, ExceptionType = typeof(BussinessException), View = "Login")]

我也尝试过异常处理程序:

 filterContext.Result = new RedirectToRouteResult(new RouteValueDictionary(filterContext.RouteData));

然后处理行动中的错误,ModelState.IsValid但行动的价值为空。所以现在我使用第一种方法。当我有更多时间时,我会尝试修复第二种方法。

4

2 回答 2

2

请阅读这部分的文档:http: //msdn.microsoft.com/en-us/library/gg416513%28v=vs.98%29.aspx
http://www.asp.net/web-api/overview /web-api-routing-and-actions/exception-handling
http://www.asp.net/mvc/tutorials/older-versions/controllers-and-routing/understanding-action-filters-cs

内容太多,这里就不放了:

 public class NotImplExceptionFilterAttribute : ExceptionFilterAttribute 
    {
        public override void OnException(HttpActionExecutedContext context)
        {
            if (context.Exception is NotImplementedException)
            {
                context.Response = new HttpResponseMessage(HttpStatusCode.NotImplemented);
            }
        }
    }

和你的控制器:

public class ProductsController : ApiController
{
    [NotImplExceptionFilter]
    public Contact GetContact(int id)
    {
        throw new NotImplementedException("This method is not implemented");
    }
}
于 2013-03-26T09:16:19.970 回答
0
  1. 根据这篇文章,创建一个自定义活页夹并将模型放入 TempData:

    public class AppBinder : DefaultModelBinder
    {
        protected override void OnModelUpdated(ControllerContext controllerContext, ModelBindingContext bindingContext)
        {
            base.OnModelUpdated(controllerContext, bindingContext);
            controllerContext.Controller.TempData["model"] =    bindingContext.Model;
        }
    }
    
  2. 在 global.asax 中注册它:

    ModelBinders.Binders.DefaultBinder = new AppBinder();
    
  3. 创建一个 BaseController 并覆盖 OnException:

    protected override void OnException(ExceptionContext filterContext)
    {
        filterContext.ExceptionHandled = true;
    
        this.ModelState.AddModelError(string.Empty, filterContext.Exception.Message);
    
        filterContext.Result = new ViewResult
        {
            ViewName = filterContext.RouteData.Values["action"].ToString(),
            TempData = filterContext.Controller.TempData,
            ViewData = filterContext.Controller.ViewData
        };
    
        base.OnException(filterContext);
    }
    

All Actions int 从该基本控制器继承的控制器将在验证摘要中显示其未处理的异常他们自己的视图(请记住

@Html.ValidationSummary(true) 

在页面中)。它对我有用,希望对你也有用!

于 2015-04-19T14:14:30.520 回答