выбрать нужные атрибуты (имя, цвет кожи, вес, рост), swapi.co
url = "https://swapi.co/api/people";
function heroes () {
var xhr = new XMLHttpRequest();
xhr.onreadystatechange = function () {
if (xhr.readyState == 4 && xhr.status == 200) {
var data = JSON.parse(xhr.responseText);
console.log(data);
}
document.getElementById('demo').innerHTML = xhr.responseText;
};
xhr.open("get", url, true);
xhr.send();
}
|