Skip to content
Advertisement

How to handle errors in fetch() responses with Redux-Saga?

I try to handle Unauthorized error from server using redux-saga. This is my saga:

JavaScript

I fetch data like this:

JavaScript

But anyway result is {type: 'LOG_IN_SUCCEEDED', user: undefined} when I expect {type: 'LOG_IN_FAILED', error: 'Unauthorized'}. Where is my mistake? How to handle errors right using Redux-Saga?

Advertisement

Answer

Don’t handle the then and error in your fetchUser method and your saga. Since you are already try/catching in your saga, you could handle it there.

Example

Saga

JavaScript

Fetch

JavaScript

As a side note: I find fetch‘s api a little awkward because it returns a then-able response when you make a request. There are many libraries out there; personally I prefer axios which returns json by default.

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