我有一个带有redux-form的表单设置,并且基本上想要创建一个场景,如果在任何表单的输入中填充了内容,并且您尝试离开页面,则会收到提示。
目的是在点击取消时取消页面卸载或页面导航。我尝试创建一个条件,如果完成只会return
,但它仍然会导航离开当前页面。
这可能很自然,我现在还不知道反应/反应路由器的工作流程,但目前是否有人能够解释最佳方法?如果某些事情没有得到满足,是否有一些通用的东西可以让我停止卸载?
import { reduxForm } from 'redux-form';
class Form extends Component {
componentWillUnmount() {
if (!this.props.pristine && !confirm('Are you sure you want to navigate away from this page?')) {
return;
}
}
render() {
const { handleSubmit } = this.props;
return (
<form onSubmit={ handleSubmit(this.props.onSubmit) }>
...
</form>
);
}
}
...
export default connect(mapStateToProps, null)(reduxForm({
form: 'Form',
enableReinitialize: true,
validate
})(Form));
答案 0 :(得分:1)
如果你正在使用react-router,那么你可以使用routerWillLeave
;请参阅文档:https://github.com/ReactTraining/react-router/blob/master/docs/guides/ConfirmingNavigation.md
<强>更新强>
提供一个例子有点困难,这很粗糙,未经测试。
import { reduxForm } from 'redux-form';
class Form extends React.Component {
constructor(props) {
super(props);
this.state = {
dirty: false
};
}
componentDidMount() {
this.props.router.setRouteLeaveHook(this.props.route, this.routerWillLeave.bind(this));
}
routerWillLeave(nextLocation) {
const { dirty } = this.state;
if (dirty) {
return 'You have unsaved information, are you sure you want to leave this page?'
}
}
render() {
const { handleSubmit } = this.props;
return (
<form onSubmit={ handleSubmit(this.props.onSubmit) }>
...
</form>
);
}
}
基本上,routerWillLeave会在用户尝试导航的任何时候触发。当用户进行更改时,将脏状态值更新为true。文档应该涵盖您需要知道的其余内容(同时确保您运行的是2.4.0 +版本。)