“Qu'est-ce que Redux Thunk” Réponses codées

redux thunk

npm i --save redux react-redux redux-thunk // You will need these redux packages
DecodeBuzzing

Qu'est-ce que Redux Thunk


Redux Thunk is middleware that allows you to return functions,
rather than just actions, within Redux. 
This allows for delayed actions, including working with promises.

---
One of the main use cases for this middleware is 
for handling actions that might not be synchronous, 
for example, using axios to send a GET request. 
Redux Thunk allows us to dispatch those actions asynchronously 
and resolve each promise that gets returned.
KostasX

Réponses similaires à “Qu'est-ce que Redux Thunk”

Questions similaires à “Qu'est-ce que Redux Thunk”

Plus de réponses similaires à “Qu'est-ce que Redux Thunk” dans HTML

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code