gpt4 book ai didi

javascript - 如果表单不完整,取消 componentWillUnmount

转载 作者:行者123 更新时间:2023-11-29 15:23:19 43 4
gpt4 key购买 nike

我有一个带有 redux-form 的表单设置,基本上想创建一个场景,如果在任何表单的输入中填充了内容,并且您尝试离开页面,您会收到提示。

目的是在他们单击取消 时取消页面卸载或页面导航。我尝试创建一个条件,如果满足将只是 return 但它仍然导航离开当前页面。

这可能是自然而然的,我还不了解 react/react-router 工作流程,但暂时有人能解释一下最好的方法吗?如果有什么未满足,是否有一般的东西可以让我停止卸载?

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

最佳答案

如果您使用的是 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+ 版本)。

关于javascript - 如果表单不完整,取消 componentWillUnmount,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41509898/

43 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com