1 回答
TA贡献2041条经验 获得超4个赞
由于您正在操作过滤器中进行构造函数注入,因此您可以使用ServiceFilter属性启用它,您可以在其中传递过滤器的类型
[ServiceFilter(typeof(Tracker))]
public IActionResult Index()
{
// to do : return something
}
确保您已在ConfigureServices方法中注册过滤器
services.AddScoped<Tracker>();
如果要将其他参数传递给过滤器,可以更新过滤器构造函数以包含这些参数。
public class Tracker : ActionFilterAttribute
{
private string _actionType { get; set; }
private string _actionName { get; set; }
private readonly ILoggerFactory _logger;
public Tracker(ILoggerFactory logger, string actionType, string actionName)
{
this._logger = logger;
this._actionName = actionName;
this._actionType = actionType;
}
public override void OnActionExecuting(ActionExecutingContext context)
{
base.OnActionExecuting(context);
}
public override void OnActionExecuted(ActionExecutedContext context)
{
base.OnActionExecuted(context);
}
public override void OnResultExecuting(ResultExecutingContext context)
{
base.OnResultExecuting(context);
}
public override void OnResultExecuted(ResultExecutedContext context)
{
base.OnResultExecuted(context);
}
}
并使用TypeFilter属性来启用您的过滤器,您可以在其中显式传递参数
[TypeFilter(typeof(Tracker), Arguments = new object[] { "Abc", "Xyz" })]
public IActionResult Index()
{
// to do : return something
}
- 1 回答
- 0 关注
- 174 浏览
添加回答
举报