标签: reactjs react-redux redux-form
我在表单页面上有一个取消按钮,并添加了
onClick={() => this.props.resetForm()}
清除表格,但我得到TypeError: resetForm is not a function
TypeError: resetForm is not a function
答案 0 :(得分:2)
虽然文档确实说要重置表格,您应该使用resetForm道具,如here所示,但您实际要使用的道具只是reset 。
resetForm
reset
显然,基于此issue,文档实际上已经过时了。