Asp.net mvc controller 中如何正确存取cookie

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Asp.net mvc controller 中如何正确存取cookie相关的知识,希望对你有一定的参考价值。

我是这样写的 :
//以下是存cookie, 假设这是些在controllerA中,运行项目首先会走过这段代码,也就是cookie里面现在是有值的。
HttpCookie cookie = new HttpCookie("xx");
xx.Name = "Name";
xx.Expires = DateTime.Today.AddDays(365);
xx.Values.Add("xx_Id", "Id");
Response.AppendCookie(cookie);
//以下是取cookie,假设是在controllerB中,运行完项目当我进行某一操作时,会走下面这段代码。 问题是 为什么现在的Request.Cookies["xx"] 是空的,???求解啊!!
if (Request.Cookies["xx"] != null)
string X = Request.Cookies["xx"]["xx_Id"].ToString();

给你一个完整的例子,看了后自然明白怎么回事了。

public class CookieController : Controller

    public ActionResult Index()
    
        ViewData["Message"] = "Welcome to ASP.NET MVC!";
        string cookie = "There is no cookie!";
        if (this.ControllerContext.HttpContext.Request.Cookies.AllKeys.Contains("Cookie"))
        
            cookie = "Yeah - Cookie: " + this.ControllerContext.HttpContext.Request.Cookies["Cookie"].Value;
        
        ViewData["Cookie"] = cookie;
        return View();
    
 
    public ActionResult Create()
    
        HttpCookie cookie = new HttpCookie("Cookie");
        cookie.Value = "Hello Cookie! CreatedOn: " + DateTime.Now.ToShortTimeString();
        this.ControllerContext.HttpContext.Response.Cookies.Add(cookie);
        return RedirectToAction("Index", "Home");
    
 
    public ActionResult Remove()
    
        if (this.ControllerContext.HttpContext.Request.Cookies.AllKeys.Contains("Cookie"))
        
            HttpCookie cookie = this.ControllerContext.HttpContext.Request.Cookies["Cookie"];
            cookie.Expires = DateTime.Now.AddDays(-1);
            this.ControllerContext.HttpContext.Response.Cookies.Add(cookie);
        
        return RedirectToAction("Index", "Home");
    

追问

看您代码里头没有设置时间,,,请问 ,我上面的那些代码的写法对吗,?在别的controller调我已经存过的cookie为什么得到的是空呢,是没存进去吗?

追答

你当然可以自己设置过期时间,这块我只是默认的。

 

你这个xx好像不对吧,xx是Cookie对象的name, 试一下下面的代码,

HttpCookie cookie = new HttpCookie("xx");
cookie.Name = "Name";
cookie.Expires = DateTime.Today.AddDays(365);
cookie.Values.Add("xx_Id", "Id");
Response.Cookies.Add(cookie);

追问

不好意思啊,,我项目里面的代码就是这样写的,上面的贴错了。我这在同一个controller里面可以得到cookie的值,在别controller的就不行,不知道这是什么原因

追答

我已经测试过我给你的这段代码,不同的Controller中调用肯定是每问题的。你使用了

public ActionResult Index()

    ViewData["Message"] = "Welcome to ASP.NET MVC!";
    string cookie = "There is no cookie!";
    if (Request.Cookies.AllKeys.Contains("xx"))
    
        cookie = "XX: " + Request.Cookies["xx"].Values["xx_id"];
    
    ViewData["Cookie"] = cookie;
    return View();

public ActionResult Create()

    HttpCookie cookie = new HttpCookie("xx");
    cookie.Values.Add("xx_id", "test xx");
    Response.Cookies.Add(cookie);
    return RedirectToAction("Index", "Cookie");

 不同的Controller中测试都可以正确地取到值,比如,

XX: test xx

 另外,我刚也测试了下你的这种写法,貌似也是可以取到Cookie信息,可能是你的Cookie失效了。

 

如果你还有疑问,我们可以接着探讨。

追问

怎么让它不失效呢?

追答

Cookies是一个不太靠谱的传值方式,它的安全性,可靠性都是不能保证的。
延长Cookie的失效时间是一个策略,但目前电脑中的优化软件通常会清空本地存放的Cookie数据。
建议你还是尝试使用其他的传值方式, 如Model, ViewData, ViewBag,TempData等。

参考技术A HttpContext.Current.Request.Cookies["cook"];

Asp.net MVC 中Controller返回值类型ActionResult

内容转自 http://blog.csdn.net/pasic/article/details/7110134

Asp.net MVC中Controller返回值类型

在mvc中所有的controller类都必须使用"Controller"后缀来命名
并且对Action也有一定的要求:

  • 必须是一个public方法
  • 必须是实例方法
  • 没有标志NonActionAttribute特性的(NoAction)
  • 不能被重载
  • 必须返回ActionResult类型

如:

[csharp] view plain copy
 
  1. public class MyController : Controller  
  2. {  
  3.    // 必须返回ActionResult类型  
  4.     public ActionResult HelloWorld()  
  5.     {  
  6.         ViewData["Message"] = "Hello World!";  
  7.         return View();  
  8.     }  
  9. }  

下面列举Asp.net MVC中Controller中的ActionResult返回类型
1、返回ViewResult视图结果,将视图呈现给网页

[csharp] view plain copy
 
  1. public ActionResult About()  
  2.  {  
  3.     return View(); // 参数可以返回model对象  
  4.  }  

2、 返回PartialViewResult部分视图结果,主要用于返回部分视图内容
在View/Shared目录下创建ViewUserControl.cshtml部分视图
  

[csharp] view plain copy
 
  1. public ActionResult UserControl()  
  2.  {  
  3.      ViewBag.Message = "部分视图";  
  4.      return PartialView("ViewUserControl");  
  5.  }  

       页面调用@ViewBag.Message 将输出“部分视图”
3、 返回ContentResult用户定义的内容类型 

[csharp] view plain copy
 
  1. public ActionResult Content()  
  2. {  
  3.    return Content("Test Content", "text/html"); // 可以指定文本类型  
  4. }  

 页面输出“Test Content”;
此类型多用于在ajax操作中需要返回的文本内容
4、 返回JsonResult序列化的Json对象
      

[csharp] view plain copy
 
  1. public ActionResult Json()  
  2.  {  
  3.      Dictionary<string, object> dic = new Dictionary<string, object>();  
  4.      dic.Add("id", 100);  
  5.      dic.Add("name", "hello");  
  6.      return Json(dic, JsonRequestBehavior.AllowGet);  
  7.  }  

主要用于返回json格式对象,可以用ajax操作;
注意:需要设置参数,JsonRequestBehavior.AllowGet,
否则会提示错误:此请求已被阻止,因为当用在 GET 请求中时,会将敏感信息透漏给第三方网站。
若要允许 GET 请求,请将 JsonRequestBehavior 设置为 AllowGet。
5、返回JavaScriptResult可在客户端执行的脚本

[csharp] view plain copy
 
  1. public ActionResult JavaScript()  
  2. {  
  3.     string str = string.Format("alter(‘{0}‘);", "弹出窗口");  
  4.     return JavaScript(str);  
  5. }  

但这里并不会直接响应弹出窗口,需要用页面进行再一次调用。
这个可以方便根据不同逻辑执行不同的js操作
6、返回FileResult要写入响应中的二进制输出,一般可以用作要简单下载的功能

[csharp] view plain copy
 
  1. public ActionResult File()  
  2.  {  
  3.      string fileName = "~/Content/test.zip"; // 文件名  
  4.      string downFileName = "文件显示名称.zip"; // 要在下载框显示的文件名  
  5.      return File(fileName, "application/octet-stream", downFileName);  
  6.  }  

直接下载test.zip后保存到本地则为"文件显示名称.zip"
7、 返回Null或者Void数据类型的EmptyResult 

[csharp] view plain copy
 
  1. public ActionResult Empty()  
  2.  {  
  3.      return null;  
  4.  }  

返回NULL
8、重定向方法:Redirect / RedirectToAction / RedirectToRoute

    Redirect:直接转到指定的url地址

[csharp] view plain copy
 
  1. public ActionResult Redirect()  
  2.        {  
  3.            // 直接返回指定的url地址  
  4.            return Redirect("http://www.baidu.com");  
  5.        }   

    RedirectToAction:直接使用 Action Name 进行跳转,也可以加上ControllerName

[csharp] view plain copy
 
  1. public ActionResult RedirectResult()  
  2. {  
  3.     return RedirectToAction("Index", "Home", new { id = "100", name = "liu" });  
  4. }  

也可以带上参数
RedirectToRoute:指定路由进行跳转

[csharp] view plain copy
 
  1. public ActionResult RedirectRouteResult()  
  2. {  
  3.     return RedirectToRoute("Default", new { controller = "Home", action = "Index"});  
  4. }  

Default为global.asax.cs中定义的路由名称

以上是关于Asp.net mvc controller 中如何正确存取cookie的主要内容,如果未能解决你的问题,请参考以下文章

Asp.net MVC 中Controller返回值类型ActionResult

Asp.net MVC 中Controller返回值类型ActionResult

Controller.User 在 ASP.NET MVC 5 上由 ASP.NET Identity 设置不一致

ASP.NET MVC 中 Controller.ReadFromRequest 的替代品是啥?

Asp.net MVC中 Controller 与 View之间的数据传递

ASP.NET MVC Controller与Areas下面的Controller同名的解决办法