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



我试图使用 React Final Form 和 Axios 显示从我的 API 返回的错误。 当我从 Axios 返回 .catch(( 中的错误时,表单似乎没有重新加载错误消息。

正如您在顶部注释掉的返回中看到的那样,如果我在那里调用它,它会正确显示表单中的错误。虽然当我在 catch(( 中调用它时,它没有显示任何错误。

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

我的onSubmit如下,axiosConfig只是一个拦截器,用于将令牌附加到api调用。我也用普通公理测试了它,但行为是相同的。

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>
);

尝试使用async/await语法。

还可能存在以下情况:您的错误块一开始就没有被调用,而控件仍在成功回调中。因此,您可能还希望在其中放置一个 else 条件,以便在状态代码不是 200 时返回错误。

像这样:

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"
};
}
};

相关内容

  • 没有找到相关文章