--- id: 587d7fae367417b2b2512be3 title: Get JSON with the JavaScript XMLHttpRequest Method challengeType: 6 videoUrl: '' localeTitle: 使用JavaScript XMLHttpRequest方法获取JSON --- ## Description
您还可以从外部源请求数据。这就是API发挥作用的地方。请记住,API(或应用程序编程接口)是计算机用来相互通信的工具。您将学习如何使用我们从API获得的数据使用称为AJAX的技术更新HTML。大多数Web API以称为JSON的格式传输数据。 JSON代表JavaScript Object Notation。 JSON语法看起来与JavaScript对象文字表示法非常相似。 JSON具有对象属性及其当前值,夹在{} 。这些属性及其值通常称为“键值对”。但是,API传输的JSON以bytes形式发送,应用程序将其作为string接收。这些可以转换为JavaScript对象,但默认情况下它们不是JavaScript对象。 JSON.parse方法解析字符串并构造它描述的JavaScript对象。您可以从freeCodeCamp的Cat Photo API请求JSON。以下是您可以在点击事件中添加的代码:
req = new XMLHttpRequest();
req.open( “GET”, '/ JSON / cats.json',TRUE);
req.send();
req.onload =函数(){
JSON = JSON.parse(req.responseText);
document.getElementsByClassName( '信息')[0] = .innerHTML JSON.stringify(JSON);
};
这是对每件作品的评论。 JavaScript XMLHttpRequest对象具有许多用于传输数据的属性和方法。首先,创建XMLHttpRequest对象的实例并将其保存在req变量中。接下来, open方法初始化一个请求 - 这个例子是从API请求数据,因此是一个“GET”请求。 open的第二个参数是您从中请求数据的API的URL。第三个参数是布尔值,其中true使其成为异步请求。 send方法发送请求。最后, onload事件处理程序解析返回的数据并应用JSON.stringify方法将JavaScript对象转换为字符串。然后将此字符串作为消息文本插入。
## Instructions
更新代码以创建并向freeCodeCamp Cat Photo API发送“GET”请求。然后单击“获取消息”按钮。您的AJAX函数将使用API​​的原始JSON输出替换“消息将在此处”文本。
## Tests
```yml tests: - text: 您的代码应该创建一个新的XMLHttpRequest 。 testString: 'assert(code.match(/new\s+?XMLHttpRequest\(\s*?\)/g), "Your code should create a new XMLHttpRequest.");' - text: 您的代码应该使用open方法初始化对freeCodeCamp Cat Photo API的“GET”请求。 testString: 'assert(code.match(/\.open\(\s*?("|")GET\1\s*?,\s*?("|")\/json\/cats\.json\2\s*?,\s*?true\s*?\)/g), "Your code should use the open method to initialize a "GET" request to the freeCodeCamp Cat Photo API.");' - text: 您的代码应使用send方法发送请求。 testString: 'assert(code.match(/\.send\(\s*\)/g), "Your code should use the send method to send the request.");' - text: 您的代码应该有一个设置为函数的onload事件处理程序。 testString: 'assert(code.match(/\.onload\s*=\s*function\(\s*?\)\s*?{/g), "Your code should have an onload event handler set to a function.");' - text: 您的代码应该使用JSON.parse方法来解析responseText 。 testString: 'assert(code.match(/JSON\.parse\(.*\.responseText\)/g), "Your code should use the JSON.parse method to parse the responseText.");' - text: 您的代码应该获取带有类message的元素,并将其内部HTML更改为JSON数据字符串。 testString: 'assert(code.match(/document\.getElementsByClassName\(\s*?("|")message\1\s*?\)\[0\]\.innerHTML\s*?=\s*?JSON\.stringify\(.+?\)/g), "Your code should get the element with class message and change its inner HTML to the string of JSON data.");' ```
## Challenge Seed
```html

Cat Photo Finder

The message will go here

```
## Solution
```js // solution required ```