如何在 JavaScript 中唯一标识访问网站的计算机?


无论何时我们创建任何应用程序或网站,都需要唯一地识别访问该网站的计算机。唯一标识计算机有很多好处。

例如,您为用户提供一些服务。通过唯一识别计算机,您可以为用户首次从新设备访问您的网站时提供试用服务。当用户再次访问时,您可以要求用户购买高级服务或订阅您的应用程序。

在这里,我们将使用 cookie 来识别访问网站的计算机。

什么是 cookie?

cookie 允许开发人员在浏览器中存储用户信息。例如,我们可以从服务器向浏览器发送数据并将其存储在浏览器中。因此,无论何时用户重新访问网站,它都会从 cookie 中而不是从服务器中获取数据。因此,cookie 提高了应用程序的性能。

在我们的案例中,当用户首次访问网站时,我们可以将 cookie 的过期时间设置为 100 年。之后,无论何时用户再次访问网站,我们都会检查 cookie 是否存在,然后我们可以说用户已重新访问网站。

语法

用户可以遵循以下语法在 Web 浏览器上设置和获取 cookie。

// to set cookies
document.cookie = "isVisited=true";

// to get cookies
let ca = decodeURIComponent(document.cookie).split(';'); 

在上述语法中,我们将带有键值对的字符串分配给 document.cookie 以将 cookie 设置到浏览器中。要获取 cookie,我们可以简单地使用 document.cookie,它返回 cookie 数组。

步骤

步骤 1 − 创建 fetchCookies() 函数。

步骤 2 − 在 fetchCookies() 函数内部,使用 document.cookie 获取数组格式的 cookie,并使用 decodeURIComponent() 方法解码 cookie。

步骤 3 − 使用 for 循环遍历数组。

步骤 4 − 对于数组的每个元素,删除数组开头处的空格。

步骤 5 − 使用 indexOf() 方法检查数组元素是否包含索引 0 处的键,并使用 substring() 方法获取键值。

步骤 6 − 返回特定键的值。

步骤 7 − 创建 fetchCookies() 函数。在 fetchCookies() 函数中,调用 getCookie() 函数并检查 cookie 是否存在。

步骤 8 − 如果 cookie 为空,则设置 cookie。

步骤 9 − 根据所需的 cookie 是否为空打印消息。

示例

在下面的示例中,无论何时用户首次访问网站,我们都会在 cookie 中将“isValidate”设置为“true”值。无论何时用户第二次访问网站,我们都会获取 cookie 中的“isValidate”,因此我们会打印类似“欢迎回到网站”的消息。

<html>
<body>
   <h3>Using the <i> Cookies </i> to uniquely identify computers visiting web site in JavaScript</h3>
   <div id = "content"> </div>
   <script>
      let content = document.getElementById('content');
      
      // function to get cookies
      function fetchCookies(cname) {
         let key = cname + "=";
         let ca = decodeURIComponent(document.cookie).split(';');
         for (let i = 0; i < ca.length; i++) {
            let part = ca[i];
            while (part.charAt(0) == ' ') {
               part = part.substring(1);
            }
            if (part.indexOf(key) == 0) {
               return part.substring(key.length, part.length);
            }
         }
         return null;
      }
      
      // set cookies to uniquely identify the computer visiting the website
      function checkCookies() {
         var cookies = fetchCookies("isVisited");
         if (cookies == null) {
            content.innerHTML = "Welcome to the website";
            document.cookie = "isVisited=true";
         } else {
            content.innerHTML = "Welcome back to the website";
         }
      }
      checkCookies();
   </script>
</body>
</html>

示例

在下面的示例中,无论何时用户首次访问网站,我们都会使用提示框询问他们的姓名并显示欢迎消息。此外,我们还将 cookie 设置为 100 年的过期时间。

无论何时用户第二次访问,我们都会显示带有他们姓名的欢迎消息,而无需向他们询问他们的姓名。

<html>
<body>
   <h3>Using the <i> Cookies </i> to uniquely identify computers visiting web site in JavaScript</h3>
   <div id = "content"> </div>
   <script>
      let content = document.getElementById('content');
      
      // function to get cookies
      function fetchCookies(cname) {
         let key = cname + "=";
         let ca = decodeURIComponent(document.cookie).split(';');
         for (let i = 0; i < ca.length; i++) {
            let part = ca[i];
            while (part.charAt(0) == ' ') {
               part = part.substring(1);
            }
            if (part.indexOf(key) == 0) {
               return part.substring(key.length, part.length); 
            }
         }
         return null;
      }
      
      // set cookies to uniquely identify the computer visiting the website
      function checkCookies() {
         var cookies = fetchCookies("customCookie");
         if (cookies == null) {
            let name = prompt("Enter your name", "Shubham");
            document.cookie = "customCookie=" + name + "; expires=Thu, 23 Oct 2120 12:00:00 UTC; path=/";
            content.innerHTML = "How are you " + name + "?";
         }
         else {
            content.innerHTML = "Hey, " + cookies + " You visited our site again!";
         }
      }
      checkCookies();
   </script>
</body>
</html> 

用户学习了如何使用 JavaScript 中的 cookie 来唯一识别访问网站的计算机。但是,cookie 有一些局限性。如果用户清除 cookie,我们将无法唯一识别计算机。此外,我们需要将 cookie 的过期时间设置为 100 年。此外,如果用户使用不同的浏览器,我们将无法唯一识别计算机。

克服上述所有问题的最佳解决方案是使用 Google Analytics。

更新于: 2023-03-09

595 次浏览

开启您的 职业生涯

通过完成课程获得认证

开始
广告