繁体   English   中英

Redux thunk:等待异步函数调度

[英]Redux thunk: wait for async function to dispatch

我正在创建一个React Native应用程序并使用redux和redux-thunk来实现我的API请求。 我想知道如何等待我的行动被派遣,并确保我的状态已经在异步thunk逻辑中更新。 如果我理解正确, await将等待thunk的结束,但是尚未调度该动作。 虽然,正如您在我的使用中所看到的,我需要修改状态以相应地继续执行其余代码。

动作/ user.js的

export const tryLogin = (
  email: string,
  password: string,
  sessionToken: string = ''
): Function => async (dispatch: Function) => {
  const logUser = () => ({ type: LOG_USER })

  const logUserSuccess = (data: any, infos: any) => ({
    type: LOG_USER_SUCCESS,
    data,
    infos,
  })

  const logUserError = (signinErrorMsg: string) => ({
    type: LOG_USER_ERROR,
    signinErrorMsg,
  })

  dispatch(logUser())

  try {
    { /* Some API requests via axios */ }

    dispatch(logUserSuccess(responseJson, infos))
    return true
  } catch (error) {
    { /* Error handling code */ }

    dispatch(logUserError(error.response.data.error))
    return false
}

减速器/ user.js的

case LOG_USER:
  return {
    ...state,
    isLoggingIn: true,
  }
case LOG_USER_SUCCESS:
  return {
    ...state,
    isLoggingIn: false,
    data: action.data,
    infos: action.infos,
    error: false,
    signinErrorMsg: '',
  }
case LOG_USER_ERROR:
  return {
    ...state,
    isLoggingIn: false,
    error: true,
    signinErrorMsg: action.signinErrorMsg,
  }

RegisterScreen.js

if (await trySignup(
    emailValue,
    firstNameValue,
    lastNameValue,
    passwordValue,
    birthdateValue,
    genderValue
  )
) {
  if (userReducer.data) {
    navigation.navigate('Secured')
  }

在Redux中,当Action被调度到商店时,它将使用新的props自动更新UI的状态。

您可以在reducer signUpSuccess添加一个类似于isLoggingIn标志的标志,而不是观察已调度的操作,并监听componentDidUpdate生命周期方法中的更改。

trySignup可以单独调用(如在事件,formSubmit,按钮单击等)

RegisterScreen.js

class RegisterScreen extends React.Component{
...
componentDidUpdate(prevProps) {
  if (prevProps.signUpSuccess !== this.props.signUpSuccess){
    if (this.props.signUpSuccess) {
      navigation.navigate('Secured')
    }
  }
}
...
}
const mapStateToProps = (state) => ({
  signUpSuccess: state.userReducer.signUpSuccess,
});

export default connect(mapStateToProps)(RegisterScreen);

如果我理解正确,await将等待thunk的结束,但是尚未调度该动作。

  • 如果在道具中发生任何更改,渲染可以更新,因此在渲染方法中提取道具并根据道具中的更改更新UX。
  • 我建议使用React本机调试器来检查您的操作和当前保存的状态。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM