• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ASP.NETCoreTypeFilter使用记录

原作者: [db:作者] 来自: [db:来源] 收藏 邀请
[HttpGet]
[TypeFilter(typeof(LogActionFilter),Arguments =new object[] { "测试表", "YJYK", "Log_Users", "Insert" , "logCode","我测试一下Aop操作日志" })]
public IActionResult TestMothod2()
{
return Ok();
}
    public class LogActionFilter : Attribute, IActionFilter
    {
        private readonly ILogger<LogActionFilter> _logger;
        private readonly ILog_UsersService _log;



        public LogActionFilter(
                               ILogger<LogActionFilter> logger,
                               ILog_UsersService log,
                               string tableName = "",
                               string moduleName = "",
                               string methodName = "",
                               string logType = "",
                               string logCode = "",
                               string logDetail = "")
        {
            _logger = logger;
            _log = log;
            TableName = tableName;
            ModuleName = moduleName;
            MethodName = methodName;
            LogType = logType;
            LogCode = logCode;
            LogDetail = logDetail;
        }
        public string TableName { get; set; }

        public string ModuleName { get; set; }
        /// <summary>
        /// 方法名
        /// </summary>
        public string MethodName { get; set; }
        public string LogType { get; set; }


        /// <summary>
        /// 日志返回码
        /// </summary>
        public string LogCode { get; set; }


        /// <summary>
        /// 日志描述
        /// </summary>
        public string LogDetail { get; set; }

        public void OnActionExecuted(ActionExecutedContext context)
        {
            var logModel = new Model()
            {
                LogDetail = LogDetail,
                Url = context.HttpContext.Request.Path,
                MethodName = MethodName,
                LogCode = LogCode,
                LogType = LogType,
                TableName = TableName,
                ModuleName = ModuleName
            };
            try
            {
                _log.AddLogAsync(logModel);
            }
            catch (Exception ex)
            {

                _logger.LogError(ex, "操作日志异常");
            }
        }
        public void OnActionExecuting(ActionExecutingContext context)
        {
        }
    }

  通过这种方式就实现了 使用注入服务的 过滤器来记录操作日志


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap