freeCodeCamp/curriculum/challenges/chinese/04-data-visualization/json-apis-and-ajax/convert-json-data-to-html.c...

3.3 KiB
Raw Blame History

id title challengeType videoUrl localeTitle
587d7fae367417b2b2512be5 Convert JSON Data to HTML 6 将JSON数据转换为HTML

Description

现在您正在从JSON API获取数据您可以在HTML中显示它。您可以使用forEach方法循环数据因为cat照片对象保存在数组中。当您到达每个项目时您可以修改HTML元素。首先使用var html = "";声明一个html变量var html = ""; 。然后遍历JSON将HTML添加到包含strong标记中的键名的变量,然后是值。循环结束后,渲染它。这是执行此操作的代码:
json.forEachfunctionval{
var keys = Object.keysval;
html + =“<div class ='cat'>”;
keys.forEachfunctionkey{
html + =“<strong>”+ key +“</ strong>:”+ val [key] +“<br>”;
};
html + =“</ div> <br>”;
};

Instructions

添加forEach方法以循环JSON数据并创建HTML元素以显示它。这是一些JSON示例
[
{
“ID”0
“IMAGELINK”https://s3.amazonaws.com/freecodecamp/funny-cat.jpg”
“altText”“头上戴着绿色头盔形状瓜的白猫。”
“codeNames”[“Juggernaut”“华莱士夫人”“毛茛”
]
}
]

Tests

tests:
  - text: 您的代码应该将数据存储在<code>html</code>变量中
    testString: assert(code.match(/html\s+?(\+=|=\shtml\s\+)/g));
  - text: 您的代码应该使用<code>forEach</code>方法来循环API中的JSON数据。
    testString: assert(code.match(/json\.forEach/g));
  - text: 您的代码应将密钥名称包装在<code>strong</code>标记中。
    testString: assert(code.match(/<strong>.+<\/strong>/g));

Challenge Seed

<script>
  document.addEventListener('DOMContentLoaded',function(){
    document.getElementById('getMessage').onclick=function(){
      req=new XMLHttpRequest();
      req.open("GET",'/json/cats.json',true);
      req.send();
      req.onload=function(){
        json=JSON.parse(req.responseText);
        var html = "";
        // Add your code below this line



        // Add your code above this line
        document.getElementsByClassName('message')[0].innerHTML=html;
      };
    };
  });
</script>
<style>
  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;
  }
</style>
<h1>Cat Photo Finder</h1>
<p class="message">
  The message will go here
</p>
<p>
  <button id="getMessage">
    Get Message
  </button>
</p>

Solution

// solution required