Skip to content
Advertisement

Passing a value from one request to another request in ReactJs

I need help because I couldn’t use a separate function to generate the token – it gives out a promise, not a value. I was told that a value can only be used inside a function.

For each request, I generate a new token in the first request and then pass that token into the second request.

I tried making a separate function to generate the token, but fetch returns a promise.

As a result, I made such a big function and it works. Is there a way to make a separate function for the first request and pass the result to the second request?

The first token generation function is required frequently, while the second request is always different.

JavaScript

Advertisement

Answer

create a function that return promise

JavaScript

i did not test this code but you get the idea

i will test and update my answer asap

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