这可能不是正确的方法使用控制器,但我没有注意到这个问题,并没有想出一种方法来纠正它。
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。
解决方法
控制器的设计不是像你一样手动创建。听起来像你真正应该做的是把任何可重用的逻辑你有一个帮助类,而不是。
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。