* fix: convert data visualization * fix: reverted to blockquote * fix: changed js to json Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com> * fix: cleaned up code Co-Authored-By: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
		
			
				
	
	
		
			116 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			116 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| ---
 | |
| id: 587d7fae367417b2b2512be4
 | |
| title: Access the JSON Data from an API
 | |
| challengeType: 6
 | |
| ---
 | |
| 
 | |
| ## Description
 | |
| <section id='description'>
 | |
| In the previous challenge, you saw how to get JSON data from the freeCodeCamp Cat Photo API.
 | |
| Now you'll take a closer look at the returned data to better understand the JSON format. Recall some notation in JavaScript:
 | |
| <blockquote>[ ] -> Square brackets represent an array<br>{ } -> Curly brackets represent an object<br>" " -> Double quotes represent a string. They are also used for key names in JSON</blockquote>
 | |
| Understanding the structure of the data that an API returns is important because it influences how you retrieve the values you need.
 | |
| On the right, click the "Get Message" button to load the freeCodeCamp Cat Photo API JSON into the HTML.
 | |
| The first and last character you see in the JSON data are square brackets <code>[ ]</code>. This means that the returned data is an array. The second character in the JSON data is a curly <code>{</code> bracket, which starts an object. Looking closely, you can see that there are three separate objects. The JSON data is an array of three objects, where each object contains information about a cat photo.
 | |
| You learned earlier that objects contain "key-value pairs" that are separated by commas. In the Cat Photo example, the first object has <code>"id":0</code> where "id" is a key and 0 is its corresponding value. Similarly, there are keys for "imageLink", "altText", and "codeNames". Each cat photo object has these same keys, but with different values.
 | |
| Another interesting "key-value pair" in the first object is <code>"codeNames":["Juggernaut","Mrs. Wallace","ButterCup"]</code>. Here "codeNames" is the key and its value is an array of three strings. It's possible to have arrays of objects as well as a key with an array as a value.
 | |
| Remember how to access data in arrays and objects. Arrays use bracket notation to access a specific index of an item. Objects use either bracket or dot notation to access the value of a given property. Here's an example that prints the "altText" of the first cat photo - note that the parsed JSON data in the editor is saved in a variable called <code>json</code>:
 | |
| 
 | |
| ```js
 | |
| console.log(json[0].altText);
 | |
| // Prints "A white cat wearing a green helmet shaped melon on its head."
 | |
| ```
 | |
| 
 | |
| </section>
 | |
| 
 | |
| ## Instructions
 | |
| <section id='instructions'>
 | |
| For the cat with the "id" of 2, print to the console the second value in the <code>codeNames</code> array. You should use bracket and dot notation on the object (which is saved in the variable <code>json</code>) to access the value.
 | |
| </section>
 | |
| 
 | |
| ## Tests
 | |
| <section id='tests'>
 | |
| 
 | |
| ```yml
 | |
| tests:
 | |
|   - text: Your code should use bracket and dot notation to access the proper code name, and print "Loki" to the console.
 | |
|     testString: assert(code.match(/(?:json\[2\]\.codeNames\[1\]|json\[2\]\[('|")codeNames\1\]\[1\])/g), 'Your code should use bracket and dot notation to access the proper code name, and print "Loki" to the console.');
 | |
| 
 | |
| ```
 | |
| 
 | |
| </section>
 | |
| 
 | |
| ## Challenge Seed
 | |
| <section id='challengeSeed'>
 | |
| 
 | |
| <div id='html-seed'>
 | |
| 
 | |
| ```html
 | |
| <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);
 | |
|         document.getElementsByClassName('message')[0].innerHTML=JSON.stringify(json);
 | |
|         // Add your code below this line
 | |
| 
 | |
| 
 | |
|         // Add your code above this line
 | |
|       };
 | |
|     };
 | |
|   });
 | |
| </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>
 | |
| ```
 | |
| 
 | |
| </div>
 | |
| 
 | |
| 
 | |
| 
 | |
| </section>
 | |
| 
 | |
| ## Solution
 | |
| <section id='solution'>
 | |
| 
 | |
| ```js
 | |
| // solution required
 | |
| ```
 | |
| </section>
 |