这可能不是正确的方法使用控制器,但我没有注意到这个问题,并没有想出一种方法来纠正它。
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的实例?
解决方法
控制器的设计不是像你一样手动创建。听起来像你真正应该做的是把任何可重用的逻辑你有一个帮助类,而不是。