我目前正在研究一个使用Redux和Redux-saga的React项目。 我想知道如何在成功完成异步api调用后使表单重置。 使用redux和redux saga我是使用
resetform({})
但是它会在成功执行api之前立即重置表单
答案 0 :(得分:0)
我将做什么:
isSubmitted
,它是一个布尔值。true
时调用resetForm(); 根据Formik的文档:
The latter is useful for calling resetForm within componentDidUpdate or useEffect.
希望有帮助。