我定义:
class Form1 extends React.Component{
....
}
然后使用 withFormic 定义 HOC:
const Form2 = withFormik({
handleSubmit(values, { resetForm, setErrors, setSubmitting }) {
...
},
....
})(Form1);
在父组件中,我指定了一个回调函数:
<Task2 callback={this.something} />
现在,我希望 handleSubmit 调用回调函数。我会做的
this.props.callback()
但似乎this
在 HOC 中没有定义。
问题:如何访问 HOC 中的 Form1.props?