JavaScript 和 Cookie



什么是 Cookie?

在 JavaScript 中,Cookie 是存储在用户 Web 浏览器中的数据片段。Cookie 以键值对的形式存储在浏览器中。我们可以使用 document 对象的 cookie 属性来操作 Cookie。我们可以使用 cookie 属性设置或存储键值对形式的 Cookie。我们可以使用 document 的 cookie 属性读取 Cookie,并使用解构提取所需信息。

为什么需要 Cookie?

Web 浏览器和服务器使用 HTTP 协议进行通信,而 HTTP 是一种无状态协议。但是对于商业网站来说,需要在不同页面之间维护会话信息。

例如,您已登录到特定网站的特定网页。该网站的其他网页如何知道您已完成登录过程?在这种情况下,使用 Cookie。

在许多情况下,使用 Cookie 是记住和跟踪偏好、购买、佣金和其他改进访客体验或网站统计信息所需信息的最高效方法。

有时,Cookie 也用于缓存,以提高网站或应用程序的性能。

它是如何工作的?

您的服务器以 Cookie 的形式向访客的浏览器发送一些数据。浏览器可能会接受 Cookie。如果接受,它将作为纯文本记录存储在访客的硬盘驱动器上。现在,当访客访问您网站上的另一个页面时,浏览器会将相同的 Cookie 发送到服务器进行检索。检索后,您的服务器就知道/记得之前存储的内容。

Cookie 是 5 个可变长度字段的纯文本数据记录:

  • Expires - Cookie 将过期的时间。如果为空,则 Cookie 将在访客退出浏览器时过期。

  • Domain - 您网站的域名。

  • Path - 设置 Cookie 的目录或网页的路径。如果您想从任何目录或页面检索 Cookie,则可以为空。

  • Secure - 如果此字段包含单词“secure”,则 Cookie 只能使用安全服务器检索。如果此字段为空,则不存在此类限制。

  • Name=Value - Cookie 以键值对的形式设置和检索

Cookie 最初是为 CGI 编程设计的。Cookie 中包含的数据会在 Web 浏览器和 Web 服务器之间自动传输,因此服务器上的 CGI 脚本可以读取和写入存储在客户端上的 Cookie 值。

设置/存储 Cookie

JavaScript 可以使用 Document 对象的 cookie 属性来操作 Cookie。JavaScript 可以读取、创建、修改和删除适用于当前网页的 Cookie。

创建 Cookie 的最简单方法是将字符串值赋给 document.cookie 对象,如下所示。

document.cookie = "key1 = value1;key2 = value2;expires = date";

这里的 expires 属性是可选的。如果您使用有效的日期或时间提供此属性,则 Cookie 将在给定的日期或时间过期,此后将无法访问 Cookie 的值。

Cookie 字符串包含用分号分隔的键值对。

注意 - Cookie 值可能不包含分号、逗号或空格。因此,您可能需要在将值存储到 Cookie 中之前使用 JavaScript 的 escape() 函数对其进行编码。如果您这样做,则在读取 Cookie 值时也必须使用相应的 unescape() 函数。

示例

尝试以下操作。它在输入 Cookie 中设置客户姓名。

<html>
   <head>   
      <script type = "text/javascript">
         function WriteCookie() {
            if( document.myform.customer.value == "" ) {
               alert("Enter some value!");
               return;
            }
            cookievalue = escape(document.myform.customer.value) + ";";
            document.cookie = "name=" + cookievalue;
            document.write ("Setting Cookies : " + "name=" + cookievalue );
            }
      </script>      
   </head>
   
   <body>      
      <form name = "myform" action = "">
         Enter name: <input type = "text" name = "customer"/>
         <input type = "button" value = "Set Cookie" onclick = "WriteCookie();"/>
      </form>   
   </body>
</html>

输出

现在您的机器上有一个名为 name 的 Cookie。您可以使用多个用逗号分隔的 key=value 对来设置多个 Cookie。

读取 Cookie

读取 Cookie 与写入 Cookie 一样简单,因为 `document.cookie` 对象的值就是 Cookie 本身。因此,您可以随时使用此字符串来访问 Cookie。`document.cookie` 字符串会保留一个用分号分隔的名称=值对列表,其中名称是 Cookie 的名称,而值是其字符串值。

您可以使用字符串的split() 函数将字符串分解为键和值,如下所示:

示例

尝试以下示例以获取所有 Cookie。

<html>
   <head>   
      <script type = "text/javascript">
         function ReadCookie() {
            var allcookies = document.cookie;
            document.write ("All Cookies : " + allcookies );
              
            // Get all the cookies pairs in an array
            cookiearray = allcookies.split(';');
               
            // Now take key value pair out of this array
            for(var i=0; i<cookiearray.length; i++) {
               name = cookiearray[i].split('=')[0];
               value = cookiearray[i].split('=')[1];
               document.write ("Key is : " + name + " and Value is : " + value);
            }
         }
      </script>      
   </head>
   
   <body>     
      <form name = "myform" action = "">
         <p> click the following button and see the result:</p>
         <input type = "button" value = "Get Cookie" onclick = "ReadCookie()"/>
      </form>      
   </body>
</html>

注意 - 这里的lengthArray类的一个方法,它返回数组的长度。我们将在单独的章节中讨论数组。在此之前,请尝试理解它。

注意 - 您的计算机上可能已经设置了一些其他 Cookie。以上代码将显示您计算机上设置的所有 Cookie。

设置 Cookie 的过期日期

您可以通过设置过期日期并在 Cookie 中保存过期日期,来延长 Cookie 的生命周期,使其超出当前浏览器会话。这可以通过将‘expires’ 属性设置为日期和时间来完成。

示例

尝试以下示例。它演示了如何将 Cookie 的过期日期延长一个月。

<html>
   <head>   
      <script type = "text/javascript">
         function WriteCookie() {
            var now = new Date();
            now.setMonth( now.getMonth() + 1 );
            cookievalue = escape(document.myform.customer.value) + ";"
            
            document.cookie = "name=" + cookievalue;
            document.cookie = "expires=" + now.toUTCString() + ";"
            document.write ("Setting Cookies : " + "name=" + cookievalue );
         }
      </script>      
   </head>
   
   <body>
      <form name = "myform" action = "">
         Enter name: <input type = "text" name = "customer"/>
         <input type = "button" value = "Set Cookie" onclick = "WriteCookie()"/>
      </form>      
   </body>
</html>

输出

删除 Cookie

有时您可能需要删除 Cookie,以便后续尝试读取 Cookie 时返回空值。要做到这一点,您只需要将过期日期设置为过去的时间。

示例

尝试以下示例。它演示了如何通过将 Cookie 的过期日期设置为当前日期前一个月来删除 Cookie。

<html>
   <head>   
      <script type = "text/javascript">
         function WriteCookie() {
            var now = new Date();
            now.setMonth( now.getMonth() - 1 );
            cookievalue = escape(document.myform.customer.value) + ";"
               
            document.cookie = "name=" + cookievalue;
            document.cookie = "expires=" + now.toUTCString() + ";"
            document.write("Setting Cookies : " + "name=" + cookievalue );
         }
      </script>      
   </head>
   
   <body>
      <form name = "myform" action = "">
         Enter name: <input type = "text" name = "customer"/>
         <input type = "button" value = "Set Cookie" onclick = "WriteCookie()"/>
      </form>      
   </body>
</html>

输出

更新 Cookie

要更新 Cookie 中特定的键值对,您可以将新的键值对赋给 `document.cookie` 属性。在这里,您需要确保您使用的是要更新其值的相同键。

语法

请按照以下语法更新 Cookie。

document.cookie="key1=value1";  

在上面的语法中,我们正在更新“key” Cookie 的值。

示例

在下面的代码中,单击“设置 Cookie”按钮来设置 Cookie。它将为 `cartItem` 设置值 “watch”,为 `price` 设置值 10000。

之后,您可以单击“获取 Cookie”按钮来查看 Cookie。

接下来,您可以单击“更新 Cookie”按钮来更新 Cookie。它将把 `cartItem` 的值更改为 “bag”,并将 `price` 的值更改为 5000。

现在,再次单击“获取 Cookie”按钮以获取更新后的 Cookie 值。

<html>
<body>
<p id = "output"> </p>
<button onclick = "setCookies()"> Set Cookie </button> <br> <br>
<button onclick = "updateCookies()"> Update Cookie </button> <br> <br>
<button onclick = "getCookies()"> Get Cookies </button>
<script>
let output = document.getElementById("output");
function setCookies() {
  document.cookie = "cartItem=watch";
  document.cookie = "price=10000";
}
function updateCookies() {
  // Updating cookies
  document.cookie = "cartItem=bag"; 
  document.cookie = "price=5000";
}
function getCookies() {
  //Spliting the cookie string
  const allCookies = document.cookie.split("; "); 
  output.innerHTML = "The cookie data are : <br>";

  for (const cookie of allCookies) { 
    const [key, value] = cookie.split("="); 
    if (key == "cartItem" || key == "price") {
       output.innerHTML += `${key} : ${decodeURIComponent(value)} <br>`;
    }
  }
}
</script>
</body>
</html>
广告