Fetch
We're still in front/src/App.js
. We want these contacts to show in our React app.
Here's how it should go:
React loads the component
React initializes the component
React inserts the component in the page
React runs the component's
onComponentDidMount
methodReact waits for user input
We're concerned by step #4. We want to load the data when the component exists, is ready for use, and has been inserted in the page.
Let's try. Inside the component, you'll add a componentDidMount
method, in which you will try to load the contacts, and add them to the component's state
:
Open the react dev tools in your inspector, and drill down the components until you reach your App
component. Check out the state, and verify it is, actually, getting filled with the contacts it is loading from the back-end.
Let's now show those contacts in the generated html.
Add something to show the contacts to the render
function:
Save, and verify React is actually displaying the contacts.
Last updated
Was this helpful?