Skip to content
Advertisement

useState executing before another function

I am trying to setRes() as respond which is the result for a login request but Res is not setting This is the function:

JavaScript

respond should return an object like this :

JavaScript

or

JavaScript

I tried console.log() for respond and the result is correct but the setRes(respond) is not working. Any ideas?

The jsx:

JavaScript

is this the correct way to authenticate?

login code:

JavaScript

Advertisement

Answer

From your question, it is not clear if you are converting the response to json by invoking .json() on the API response. Maybe you are doing that in login(). Please share the code for login and console.log() output of respond.

My suggestion would be to remove await from within the then() promise handler. That function would only be invoked once the response is available. You could restructure you axios call and response handling as per the accepted answer here Axios response restructuring

I do not see any other issue with your code. It would be very helpful if you could create a sample app to further debug the problem.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement