我使用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}
?
答案 0 :(得分:5)
在checkUsername
功能中,您需要将呼叫返回fetch()
。