Hello I would like to know what is wrong with my code:
Even though my ajax request works, the payload
object is always undefined.
If I understand sagas correctly the fetchWord
function should wait for the fetchWordRequest
promise to be resolved, right ?
export function* fetchWordSaga(action) {
try {
const { payload } = yield call(fetchWordRequest, action.payload);
if (typeof payload !== "undefined") {
yield put({
type: types.FETCH_WORD_SUCCESS,
payload: digestResponse(payload)
})
} else {
throw new Error("payload is undefined");
}
}
catch(error) {
yield put({
type: types.FETCH_WORD_ERROR,
error: error.message
})
}
}
export function fetchWordRequest({word, params}) {
let { lang, filters } = params;
let url = `https://.../${lang}/${word}`;
return axiosConfig.get(url)
.then(response => {
return response;
})
.catch(error => {
throw error
})
}