微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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的实例?

解决方法

控制器的设计不是像你一样手动创建。听起来像你真正应该做的是把任何可重用的逻辑你有一个帮助类,而不是。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐