Код: Выделить всё
unirest.get("https://heisenbug-la-liga-live-scores-v1.p.mashape.com/api/laliga/table")
.header("X-Mashape-Key", "Lzrv6ktkq3mshGiQJrPDa9cBxcDGp1Vcdncjsn1DweG4jU5ref")
.header("Accept", "application/json")
.end(function (result) {
console.log(result.status, result.headers, result.body);
});
fetch(unirest)
.then((response) => {
return response.json();
})
.then((json) => {
console.log(json)
this.setState({
record: json.records[0]
});
})Подробнее здесь: https://stackoverflow.com/questions/487 ... position-0
Мобильная версия