码迷,mamicode.com
首页 > Windows程序 > 详细

.net core API 统一拦截错误

时间:2016-09-05 17:09:17      阅读:627      评论:0      收藏:0      [点我收藏+]

标签:

public override void OnActionExecuted(ActionExecutedContext context) {
    if (context.Exception != null) {
        this.Json(new APIReturn(-1, context.Exception.Message)).ExecuteResultAsync(context).Wait();
        // 在这里记录日志
        context.Exception = null;
    }
}

.net core API 统一拦截错误

标签:

原文地址:http://www.cnblogs.com/kellynic/p/5842723.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!