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

问题描述 投票:0回答:1

到目前为止,我无法使我的AJAX请求适用于第一个d3.js FreeCodeCamp项目,因此,我决定测试是否复制一些我已经在FCC平台上解决的作业,将其替换为完整链接到Cat Photo Finder的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>
javascript ajax request codepen
1个回答
0
投票

对XMLHttpRequest的访问已被CORS策略阻止

© www.soinside.com 2019 - 2024. All rights reserved.