Home > Blockchain >  how would you fetch data and use it across whole app?
how would you fetch data and use it across whole app?

Time:12-07

Hi iam new to react and been thinking about this for a while, I want to make react application ,

how would you continue?

  • I want to fetch data and use it all across the app( best would be just one time when user logs in)

I was thinking about fetching it with redux, but there may be much better way which iam missing.

Thx all

CodePudding user response:

If it is just one simple api request, then you are better of with using Context API. Just call the API with any network library such as fetch or axios, and keep data inside the Context. And use that Context in the whole App.

As the application's complexity grows and you need more functionality you can then use more sophisticated libraries such as Redux for managing state(keeping data at client app), calls to API will still be done with fetch or axios.

CodePudding user response:

State management like redux is the best way to achieve your goal.

  • Related