使用React最终形式和Axios显示Api错误

时间:2019-12-24 15:27:35

标签: reactjs api error-handling axios react-final-form

我正在尝试使用React Final Form和Axios进行API调用,以显示来自我的Api的错误。 当我从Axios返回.catch()中的错误时,表单似乎未重新加载错误消息。

正如您看到的带有注释的返回顶部一样,如果在此处调用它,它将在表单中正确显示错误。虽然当我在catch()中调用它时,它没有显示任何错误。

例如,当API发送400响应时,我想做的就是在catch中返回错误。

以下是我的onSubmit,而axiosConfig只是用于将令牌附加到api调用的拦截器。我也用普通的axios测试了它,但是行为是一样的。

  const onSubmit = async values => {
    //return { [FORM_ERROR]: "Login Failed" };
    axiosConfig.put('/api/v1/user/change-password/' + userPk, values, {
      'headers': { 'Authorization': auth }
    }).then( result => {
      if (result.status === 200) {
        setChanged(true);
      } 
    }).catch((error) => {
      console.log(error)
      return { [FORM_ERROR]: "Login Failed" };
    });
  };

我的表单如下。

  return (
    <div style={{ padding: 16, margin: 'auto', maxWidth: 650 }}>
      <Form
        onSubmit={onSubmit}
        initialValues={{  }}
        validate={validate}
        render={({ 
          submitError,
          handleSubmit,
          reset,
          submitting,
          pristine,
          values 
          }) => (
          <form onSubmit={handleSubmit} noValidate>
            <Paper style={{ padding: 16 }}>
              <Typography variant="h5" align="center" component="h2" gutterBottom>
                Passwort Ändern
              </Typography>
              {console.log(submitError)}

              <div>
                <Grid container alignItems="center" justify="center" spacing={4}>

                  <Grid item>
                    <Field 
                      fullWidth
                      required
                      margin="normal"
                      variant="outlined"
                      component={TextField}
                      name="old_password"
                      label="Altes Passwort"
                      type="password"
                    />                  
                    <Field 
                      fullWidth
                      required
                      margin="normal"
                      variant="outlined"
                      type="password"
                      name="new_password"
                      component={TextField}
                      label="Neues Password"
                    />                  
                    <Field 
                      fullWidth
                      required
                      margin="normal"
                      variant="outlined"
                      type="password"
                      name="new_password2"
                      component={TextField}
                      label="Neues Password Wiederholen"
                    />                  
                  </Grid>

                </Grid>
              </div>
              <div>
                {submitError && <div className="error">{submitError}</div>}
                <Grid container alignItems="flex-start" justify="space-between" spacing={4}>

                  <Grid item xs container spacing={4}>
                    <Grid item style={{ marginTop: 16 }}>
                      <Button
                        component={ Link }
                        to="/account/information"
                        type="button"
                        variant="contained"
                      >
                        Zurück
                      </Button>
                    </Grid>
                    <Grid item style={{ marginTop: 16 }}>
                      <Button
                        variant="contained"
                        color="primary"
                        type="submit"
                      >
                        Speichern
                      </Button>
                    </Grid>
                  </Grid>


                </Grid>
              </div>
            </Paper>
          </form>
        )}
      />
    </div>
  );

1 个答案:

答案 0 :(得分:0)

尝试使用async / await语法。

在某些情况下,您的错误块可能没有被首先调用,而控件仍在成功回调中。因此,如果状态码不是200,您可能还想在其中放置else条件以返回错误。

类似这样的东西:

const onSubmit = async values => {
  try {
    const result = await axiosConfig.put('/api/v1/user/change-password/' + userPk, values, {
      'headers': {
        'Authorization': auth
      }
    });

    if (result.status === 200) {
      setChanged(true);
    } else {
      // You Might also want to try this!
      return {
        [FORM_ERROR]: "Login Failed"
      };
    }
  } catch (error) {
    console.log(error)
    return {
      [FORM_ERROR]: "Login Failed"
    };
  }
};