asp.net-mvc – 控制器的实例上的HttpContext在ASP.net MVC中为null

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – 控制器的实例上的HttpContext在ASP.net MVC中为null前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这可能不是正确的方法使用控制器,但我没有注意到这个问题,并没有想出一种方法来纠正它。
public JsonResult SomeControllerAction() {

    //The current method has the HttpContext just fine
    bool currentIsNotNull = (this.HttpContext == null); //which is false    

    //creating a new instance of another controller
    SomeOtherController controller = new SomeOtherController();
    bool isNull = (controller.HttpContext == null); // which is true

    //The actual HttpContext is fine in both
    bool notNull = (System.Web.HttpContext.Current == null); // which is false        

}

我注意到控制器上的HttpContext不是“实际的”HttpContext,你会发现System.Web.HttpContext.Current。

有没有办法手动填充控制器上的HttpContextBase?或者更好的方法来创建一个Controller的实例?

解决方法

控制器的设计不是像你一样手动创建。听起来像你真正应该做的是把任何可重用的逻辑你有一个帮助类,而不是。
原文链接:https://www.f2er.com/aspnet/254168.html

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