Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Redux-saga doesn't wait for response from API

I use redux-saga and I created a generator checkUsername which perform the API call. I though that const username will equal to response from API, but I've got undefined.

function* checkUsername(action) {
  try {
    const username = yield call(Api.checkUsername, action.username);
    yield put({type: actions.USERNAME_CHECK_SUCCEEDED, username});
  } catch (e) {
    yield put({type: actions.USERNAME_CHECK_FAILED, message: e.message});
  }
}

Although in my checkUsername function, which call API res is equal {"isExist": false}:

 checkUsername(username) {
    fetch(url, {
    'GET',
    headers: {
      'Accept': 'application/json',
      'Content-Type': 'application/json',
    }
  }).then(response => response.json())
      .then(res => res)
      .catch(error => console.error(error));
 },

Why my const username is not equal {"isExist": false}?

like image 427
rel1x Avatar asked Sep 20 '16 20:09

rel1x


1 Answers

In your checkUsername function you need to return the call to fetch().

like image 84
idbehold Avatar answered Sep 24 '22 04:09

idbehold