Redux-saga并不等待API的响应

时间:2016-09-20 20:13:45

标签: javascript reactjs react-native redux redux-saga

我使用redux-saga并创建了一个执行API调用的生成器checkUsername。我虽然const username等于来自API的回复,但我已经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});
  }
}

虽然在我的checkUsername函数中,哪个调用API res相等{"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));
 },

为什么我的const username不等于{"isExist": false}

1 个答案:

答案 0 :(得分:5)

checkUsername功能中,您需要将呼叫返回fetch()