asp.net-mvc – 为什么我的ActionFilters都没有运行?

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – 为什么我的ActionFilters都没有运行?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我今天早些时候在 asked a question关于ASP.Net MVC中的ActionFilters.原来我的问题是我的ActionFilter甚至没有运行.除了我读过 this article的其他内容,我找不到他做的任何我不做的事情.

这是我的代码

// The ActionFilter itself
public class TestingIfItWorksAttribute : ActionFilterAttribute
{
    public override void OnActionExecuting(ActionExecutingContext filterContext)
    {
        filterContext.Controller.TempData["filter"] = "it worked!";
        base.OnActionExecuting(filterContext);
    }
}

// The Controller Action with the filter applied
[TestingIfItWorks]
public ActionResult Test()
{
    var didit = TempData["filter"];
    return View();
}

我在调试时永远不会遇到过滤器方法中的断点,并且在呈现视图时TempData [“filter”]保持空值.

为什么这不起作用?

解决方法

根据您对其他答案的评论

通过单元测试进行测试时,不会调用过滤器.如果要调用过滤器,则需要模拟ControllerActionInvoker.最好是单独测试过滤器本身,然后使用反射来确保过滤器应用于具有正确属性的操作.我更喜欢这种机制而不是组合测试过滤器和动作.

原版的

当然,您需要覆盖您的方法,否则您实际上并没有替换基类上的方法.我原以为编译器会抱怨你需要一个新的或覆盖它.如果您不包含override关键字,则其行为就像您使用new一样.由于框架将其作为ActionFilterAttribute调用,这意味着永远不会调用您的方法.

引自MSDN

If the method in the derived class is not preceded by new or override keywords,the compiler will issue a warning and the method will behave as if the new keyword were present.

原文链接:https://www.f2er.com/aspnet/245604.html

猜你在找的asp.Net相关文章