为什么我的 AJAX 请求在 Codepen.io 中不起作用?

Why would my AJAX request not work in Codepen.io?

到目前为止,我无法让我的 AJAX 请求适用于第一个 d3.js FreeCodeCamp 项目,所以我决定测试是否复制我已经在 FCC 上解决的一些作业平台,将 Cat Photo Finder 的 link 替换为完整的 link 到 FCC (https://www.freecodecamp.org/json/cats.json) 并测试它是否会在我按下“获取消息”按钮后执行任何操作。但是,当我按下相应的按钮时,没有任何反应。

这是我的 Codepen 项目:Cat Photo Finder Pen

我在这里做错了什么?我需要更改 Codepen 设置或导入任何语句才能使其正常工作吗?

这是我的代码:

document.addEventListener('DOMContentLoaded', function(){
    document.getElementById('getMessage').onclick = function(){
      const req = new XMLHttpRequest();
      req.open("GET",'https://www.freecodecamp.org/json/cats.json',true);
      req.send();
      req.onload = function(){
        const json = JSON.parse(req.responseText);
        let html = "";
        // Add your code below this line
        json.forEach(function(val) {
          const keys = Object.keys(val);
          html += "<div class = 'cat'>";
          keys.forEach(function(key) {
            html += "<strong>" + key + "</strong>: " + val[key] + "<br>";
          });
          html += "</div><br>";
        });
        // Add your code above this line
        document.getElementsByClassName('message')[0].innerHTML = html;
      };
    };
  });
body {
    text-align: center;
    font-family: "Helvetica", sans-serif;
  }
  h1 {
    font-size: 2em;
    font-weight: bold;
  }
  .box {
    border-radius: 5px;
    background-color: #eee;
    padding: 20px 5px;
  }
  button {
    color: white;
    background-color: #4791d0;
    border-radius: 5px;
    border: 1px solid #4791d0;
    padding: 5px 10px 8px 10px;
  }
  button:hover {
    background-color: #0F5897;
    border: 1px solid #0F5897;
  }
<body>
  <h1>Cat Photo Finder</h1>
<p class="message box">
  The message will go here
</p>
<p>
  <button id="getMessage">
    Get Message
  </button>
</p>
</body>

访问您的 XMLHttpRequest 已被 CORS 策略阻止 因为没有任何 Access-Control-Allow-Origin header .返回的资源(您的 json)应该有一个。它可能至少 Access-Control-Allow-Origin: * 允许所有域。

这不是 codepen.io 网站的问题。这是您托管 json 文件的服务器的问题。您可以尝试其他来源。作为 example I've used wikipedia 并使用不同的源代码测试了您的代码。

您可以在 MDN Web Docs - Cross-Origin Resource Sharing (CORS) 阅读有关 CORS 的更多信息。