1 заметка с тегом
ReactJS
React JS fetch from api
26 августа 2017, 1:32
fetch("/api/v1/periodic/") .then((response) => response.json()) .then((responseJson) => { this.list = responseJson.elements; this.state = { displayedElements: responseJson.elements, elements: responseJson.elements }; this.setState(this.state); return responseJson.elements; }) .catch((error) => { console.error(error); });