Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

await fetch data componentdidmount

async componentDidMount() {
    const response = await fetch(`https://api.com/v1/ticker/?limit=10`);
    const json = await response.json();
    this.setState({ data: json });
}
Source by www.valentinog.com #
 
PREVIOUS NEXT
Tagged: #await #fetch #data #componentdidmount
ADD COMMENT
Topic
Name
4+2 =