2
我正在使用react和redux與axios,thunk和promise中間件做註冊表。首先,我想等待用戶列表。然後,我想檢查是否存在用戶使用該登錄名和電子郵件,如果不是發佈用戶。我有一個等待api提取完成的問題,現在不知道如何鏈接它。React REDX等待來自api的數據
操作
export function fetchUsers(){
return function(dispatch){
dispatch({type:"FETCH_USERS"});
axios.get(url)
.then((response) => {
dispatch({type:"FETCH_USERS_FULLIFILED", payload: response.data});
})
.catch((err) => {
dispatch({type:"FETCH_USERS_ERROR", payload: err});
})
}
}
export function postUser(body){
return function(dispatch){
dispatch({type:"POST_USER"});
axios.post(url, body)
.then((response) => {
dispatch({type:"POST_USER_FULLFILED", payload: response.data});
})
.catch((err)=>{
dispatch({type:"POST_USER_ERROR", payload: err})
})
}
}
我想獲取用戶的列表,當用戶點擊提交按鈕檢查。我不能做這樣的事情的原因是沒有then()
方法
this.props.dispatch(fetchUsers()).then(()=>{
//checking my conditions
// if all is ok
this.props.dispatch(postUser(body))
})
解決了我的問題,並開啓了我的眼睛的新事物。非常感謝你,這真的很有幫助。 – quimak
很高興我能幫到你。 –