RTK Query reference
24 June 2022 (Updated 24 June 2022)
What is RTK Query?
RTK (Redux Toolkit) Query is a data fetching and caching tool that aims to simplify common data fetching and caching use cases. Itβs part of @reduxjs/toolkit
.
How to use
1. Create an API slice
With RTK Query, you typically create one API slice per base URL and define all the endpoints for that slice in one place.
2. Configure the store
Add the generated API slice reducer to your Redux store:
3. Wrap your application with a Provider
4. Use hooks in components
Reasons to use RTK Query
Integrates with Redux DevTools, allowing you to see the history of state changes in your application. RTK Query dispatches a Redux action when each network request is started, fulfilled, or failed. This makes it easy to see what is going on in your app and how network requests affect the state.
Sources
Tagged:
Redux
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment