Javascript 简明教程

JavaScript and Cookies

What are Cookies ?

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

Why are Cookies needed?

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

例如,你在某个特定网页上的某个特定网站上登录过。同一网站的其他网页如何知道你已完成登录过程?在这种情况下,就会使用 cookie。

在许多情况下,使用 cookie 是记忆和跟踪偏好、购买、佣金和其他信息最有效的方法,而这些信息对于提升访问者体验或网站统计至关重要。

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

How It Works ?

您的服务器以 cookie 的形式向访问者的浏览器发送部分数据。浏览器可能会接收该 cookie。如果接受,它会以纯文本记录的形式存储在访问者的硬盘上。现在,当访问者访问您网站上的另一个页面时,浏览器会向服务器发送相同的 cookie 以供检索。检索后,您的服务器会知道/记住之前存储的内容。

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

  1. Expires − cookie 的过期日期。如果留空,则 cookie 将在访问者退出浏览器时过期。

  2. Domain − 您网站的域名。

  3. Path − 设置 cookie 的目录或网页的路径。如果您希望从任何目录或页面检索 cookie,则可以留空。

  4. Secure − 如果此字段包含单词“安全”,那么只能使用安全服务器检索 cookie。如果此字段留空,则不存在此类限制。

  5. Name=Value − cookie 以键值对的形式设置和检索

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

Setting/ Storing Cookies

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

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

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

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

cookie 字符串包含以分号分隔的键值对。

Note - Cookie 值不能包含分号、逗号或空格。由于此原因,您可能希望在将 JavaScript escape() 函数编码后存储在 Cookie 中之前使用该函数。如果您这么做,在读取 Cookie 值时,您还必须使用相应的 unescape() 函数。

Example

尝试以下操作。它在输入 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>

Output

现在,您的计算机有一个名为 name 的 Cookie。您可以使用多个以逗号分隔的键值对来设置多个 Cookie。

Reading Cookies

读取 Cookie 和编写 Cookie 同样简单,因为 document.cookie 对象的值就是 Cookie。因此,每次您要访问 Cookie 时,都可以使用这个字符串。document.cookie 字符串将保留一个由分号分隔的名值对列表,其中 name 是 Cookie 的名称,value 是它的字符串值。

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

Example

尝试以下示例以获取所有 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>

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

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

Setting Cookies Expiry Date

您可以通过设置一个过期日期并在 Cookie 中保存过期日期来将 Cookie 的生存期延长到当前浏览器会话之后。这可以通过设置 ‘expires’ 属性为一个日期和时间来实现。

Example

尝试以下示例。它说明如何将 Cookie 的过期日期延长 1 个月。

<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>

Output

有时,您会希望删除一个 Cookie,以便后续尝试读取 Cookie 时没有任何返回结果。要做到这一点,您只需要将过期日期设置为过去的时间。

Example

尝试以下示例。它说明如何通过将过期日期设置为当前日期之前的一个月来删除 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>

Output

Updating Cookies

要更新 cookie 中的特定键值对,可以将新的键值对分配给 document.cookie 属性。在此处,你需要确保使用的是要更新其值的键。

Syntax

请遵循以下语法来更新 cookie。

document.cookie="key1=value1";

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

Example

在下面的代码中,单击设置 Cookie 按钮以设置 Cookie。它会将 cartItem 的观察值设置为 10000,而 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>