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

后端 未结 3 1021
感动是毒
感动是毒 2020-12-15 04:46

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

function* logIn(action) {
  try {
    const user = yield call(         


        
3条回答
  •  臣服心动
    2020-12-15 05:42

    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

    function* logIn(action) {
      try {
        const response = yield call(Api.logIn, action);
    
        if (response.status >= 200 && response.status < 300) {
          const user = yield response.json();
    
          yield put({ type: types.LOG_IN_SUCCEEDED, user });
        } else {
          throw response;
        }
      } catch (error) {
        yield put({ type: types.LOG_IN_FAILED, error });
      }
    }
    

    Fetch

    fetchUser(action) {
      const { username, password } = action.user;
      const body = { username, password };
    
      return fetch(LOGIN_URL, {
        method,
        headers: {
          'Accept': 'application/json',
          'Content-Type': 'application/json',
        },
        body: JSON.stringify(body)
      })
    }
    

    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.

提交回复
热议问题