我正在尝试以redux-form更改多个值。我将它们放在一个对象中,所以基本上我想用我的对象值覆盖redux-form状态值。实现它的一种方法是运行this.props.reset()
,然后为每个属性运行多个this.props.change()
事件。它工作但它发送的事件太多而且很慢。我尝试的第二件事是运行this.props.initialize(data,false)
,但这有效,但验证不会重新运行,因此我可以轻松提交表单而无需验证。
有没有办法运行一个事件来覆盖我的对象的表单状态?
答案 0 :(得分:2)
我害怕这是不可能的。我前段时间遇到同样的问题,并且以redux-form的形式阅读所有文档,我得出结论,你必须使用动作创建者。要么改变自动填充。
如果您使用initialize,那么您正在初始化值,它意味着用于数据的异步初始化,因此,它不会像您说的那样进行验证。
很久以前在以前的版本中,他们有一个" defaultValue"概念。但他们删除了它。如果您真的不需要进行最后一次更新,那么您是否值得检查一下是否会对您有所帮助。
注意强>
我建议您按照issue thread进行操作。他们在那里谈论它。
答案 1 :(得分:-1)
有可能。我是通过Redux通过Create-React-App文件结构在React中实现的。
使用stateProps / dispatchProps模式。
您应该已经知道使用该功能的动作和减速器。 这是我最初从https://medium.com/@notrab/getting-started-with-create-react-app-redux-react-router-redux-thunk-d6a19259f71f
开始的项目我包括了这些内容,所以当我使用诸如reducer和action之类的术语时,您会知道我在说什么。
在您的操作/索引文件中
import makeAction from "./makeActionCreator";
const clearMultiplePropertiesInState = "clearMultiplePropertiesInState";
export default {
constants: {
clearMultiplePropertiesInState,
},
creators: {
clearMultiplePropertiesInState: makeAction(clearMultiplePropertiesInState
}
};
在您的reducers / {your-reducer} .js中
import actions from '../actions';
const { constants } = actions;
const INITIAL_STATE = {
name: "Dr Hibbert",
age: "40",
height: "180cm"
};
//#region const declarations
const { clearMultiplePropertiesInState } = constants;
//#endregion
export default function (state = INITIAL_STATE, action) {
switch (action.type) {
case clearMultiplePropertiesInState: {
var fields = action.data;
var theState = {
...state
};
for(var i = 0; i < fields.length; i++) {
theState[fields[i]] = "";
}
return theState;
}
default:
if (!action.type.includes('@@')) {
console.log(`No action for: ${action.type} type`);
}
return state;
}
}
因此,您要清除的三个项目是state.name,state.age和state.height
import React from "react";
import { connect } from "react-redux";
import { Form, Icon, Button, Modal } from "semantic-ui-react";
import actions from "common/actions";
const { creators } = actions;
const MyComponent = ({ stateProps, dispatchProps }) => {
return (
<React.Fragment>
<Button
disabled={disableOkButton}
onClick={() => {
dispatchProps.clearMultiplePropertiesInState(["name", "age", "height"]);
}}
primary
labelPosition='right'
icon='checkmark'
content="Create Club"
loading={stateProps.modalOkButtonLoading}
/>
</React.Fragment>
);
}
function mapStatetoProps(state) {
return {
stateProps: {
name: state.name,
age: state.age,
height: state.height
}
};
}
function mapDispatchToProps(dispatch) {
return {
dispatchProps: {
clearMultiplePropertiesInState: (fieldNames) => {
dispatch(creators.clearMultiplePropertiesInState(fieldNames));
}
}
};
}
export default connect(mapStatetoProps, mapDispatchToProps)(MyComponent);
正如我说过的那样,您需要精通使用React和Redux来理解这一点,但这是可能的。此示例显示我同时重置了3个值。因此,成像也会传递新的价值...
我通常会使用一个changeSinglePropInState操作(不包含在代码中),它会传递fieldName和想要更改状态的fieldValue,因为我不想为状态中的每个项目创建一个动作。
此外,如果您可以将其包裹住,这将更改状态内对象的一个属性
case addItemToWishList: {
return {
...state,
buyer: {
...state.buyer,
wishlist: action.data
}
};
}