在我的控制器操作中,我想使用函数来设置未安装的cookie,并添加缓存一些数据。
控制器
[HttpGet]
[ActionName("Search")]
public ActionResult SearchGet(SellsLiveSearch Per, int page)
{ if (HttpContext.Request.Cookies["G"] != null)
{...}
else
{SearchFunc(Per);}
}
public static List<SellsLive> SearchFunc(SellsLiveSearch Per)
{...
System.Web.HttpContext.Current.Response.SetCookie(cookie);
HttpContext.Cache.Add
(
Key,
Data,
null,
DateTime.Now.AddMinutes(30),
TimeSpan.Zero,
System.Web.Caching.CacheItemPriority.Normal,
null
);
}
但是我不能这样做,因为VS给出错误:
HttpContextBase Controller.HttpContext
错误:
对于非静态字段,方法或属性“System.Web.Mvc.Controller.HttpContext.get”需要对象引用。
我做错了什么,我需要做什么?
答案 0 :(得分:1)
您可以将上下文传递给函数,也可以使用HttpContext.Current
来检索当前上下文。
public static List<SellsLive> SearchFunc(SellsLiveSearch Per, HttpContext context)
{
context.Response.SetCookie(cookie);
}
并称之为:
SearchFunc(Per, this.HttpContext);
public static List<SellsLive> SearchFunc(SellsLiveSearch Per)
{
HttpContext context = HttpContext.Current;
context.Response.SetCookie(cookie);
//etc
}
当然,只有当函数在正确的线程上运行时,这种方式才有效。
答案 1 :(得分:0)
我有以下代码来设置Cookie,你可能想尝试一下:
public void SetCookie(string key, string value, TimeSpan expires, bool isHttpOnly)
{
var encodedCookie = new HttpCookie(key, value);
encodedCookie.HttpOnly = isHttpOnly;
if (HttpContext.Current.Request.Cookies[key] != null)
{
var cookieOld = HttpContext.Current.Request.Cookies[key];
cookieOld.Expires = DateTime.Now.Add(expires);
cookieOld.Value = encodedCookie.Value;
HttpContext.Current.Response.Cookies.Add(cookieOld);
}
else
{
encodedCookie.Expires = DateTime.Now.Add(expires);
HttpContext.Current.Response.Cookies.Add(encodedCookie);
}
}