gpt4 book ai didi

javascript - 在 redux 表单的文本字段中设置初始值

转载 作者:行者123 更新时间:2023-11-29 15:21:57 25 4
gpt4 key购买 nike

我想创建一个像上图一样的输入文本字段,我使用的是 redux 表单。我的输入字段组件代码如下:

<input
{...props.input}
type={props.type}
className="form-control input-box__input"
placeholder={props.placeholder}
value={props.value}
/>

enter image description here

在 Field 标签中我的代码是:

                <Field
id="currentPassword"
name="currentPassword"
component={inputField}
type="text"
disabled
value={userSettings.map(i => i.currentPassword)}
/>

同样在我的容器中,我使用这样的 initialValues:

initialValues: fromJS({
currentPassword: ownProps.currentPassword,

但是好像不行。你知道为什么吗?

最佳答案

您应该使用 initialValues,例如:

const Wrapper = (props) => {
class Login extends Component {
...
}
const LoginForm = reduxForm({
form: 'LoginForm',
initialValues: {
currentPassword: "initial currentPassword",
},
})(Login);
return <LoginForm {...props} />;
}

<LoginForm
initialValues={initialValues}
/>

http://redux-form.com/6.0.0-alpha.4/examples/initializeFromState/

关于javascript - 在 redux 表单的文本字段中设置初始值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43028159/

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