fix Action参数校验问题

This commit is contained in:
不做码农 2022-03-06 12:01:52 +08:00
parent e462b00e8e
commit 013b6ea4db

View File

@ -60,7 +60,7 @@ namespace ZR.Admin.WebApi.Filters
logger.Info($"请求参数错误,{response.Msg}");
context.Result = new JsonResult(response);
}
return next();
return base.OnActionExecutionAsync(context, next);
}
/// <summary>