Posts by augusto1997 • 16 points
3 posts
-
0
votes1
answer227
viewsA: useState does not update
I recommend taking a look at promises and also a little about programação assíncrona in the Javascript, explaining in a general way, what is happening there is that in its function handleUser, you…
reactanswered augusto1997 16 -
0
votes1
answer1193
viewsA: Active React application does not connect to Node.js server on my laptop
For security reasons, on the newer Android and IOS systems, requests are blocked http on account that it is not a secure protocol and allows only https.
-
0
votes2
answers94
viewsA: Change State of Component called more than once
There are several ways to solve this. One of them would be to create a state the parent component and passing to the child through the props, another common way would be to do through context,…