【发布时间】:2016-12-17 07:19:20
【问题描述】:
我在使用 redux-form 设置初始表单字段值时遇到了一些问题。
我正在使用 redux-form v6.0.0-rc.3 并反应 v15.3.0。
这是我的问题,我有一个用户网格,当单击用户行时,我将导航到编辑用户页面并在 url 中包含用户 ID。然后在编辑用户页面上,我正在获取 id 并调用 fetchUser(this.props.params.id),它是一个返回 this.state.users 的动作创建者。然后我尝试通过调用设置表单初始值:
function mapStateToProps(state) {
return { initialValues: state.users.user }
}
据我了解,这应该将 initialValues 设置为 state.users.user,并且每当更新此状态时,initialValues 也应该更新。这不是我的情况。 InitialValues 被设置为先前单击的用户行(即 this.state.users.user 的先前状态)。所以我决定对此进行测试并向该组件添加一个按钮,当它被点击时,我再次调用 fetchUser 并使用硬编码的用户 ID:
this.props.fetchUser('75e585aa-480b-496a-b852-82a541aa0ca3');
这会正确更新状态,但 initialValues 的值不会改变。状态更新时它不会更新。我在旧版本的 redux-form 上测试了这个完全相同的过程,它按预期工作。
我在这里做错了什么还是我使用的版本有问题。
用户编辑表单 -
class UsersShowForm extends Component {
componentWillMount() {
this.props.fetchUser(this.props.params.id);
}
onSubmit(props){
console.log('submitting');
}
changeUser() {
this.props.fetchUser('75e585aa-480b-496a-b852-82a541aa0ca3');
}
renderTextField(field) {
return (
<TextField
floatingLabelText={field.input.label}
errorText={field.touched && field.error}
fullWidth={true}
{...field.input}
/>)
}
render() {
const { handleSubmit, submitting, pristine } = this.props;
return(
<div>
<form onSubmit={handleSubmit(this.onSubmit.bind(this))} className="mdl-cell mdl-cell--12-col">
<Field name="emailAddress" component={this.renderTextField} label="Email Address"/>
<Field name="firstName" component={this.renderTextField} label="First Name"/>
<Field name="lastName" component={this.renderTextField} label="Last Name"/>
</form>
<RaisedButton onClick={this.changeUser.bind(this)} label="Primary" primary={true} />
</div>
);
}
}
function mapStateToProps(state) {
return { initialValues: state.users.user }
}
UsersShowForm = reduxForm({
form: 'UsersShowForm'
})(UsersShowForm)
UsersShowForm = connect(
mapStateToProps,
actions
)(UsersShowForm)
export default UsersShowForm
用户缩减器 -
import {
FETCH_USERS,
FETCH_USER
} from '../actions/types';
const INITIAL_STATE = { all: [], user: {} };
export default function(state = { INITIAL_STATE }, action) {
switch (action.type) {
case FETCH_USERS:
return {...state, all: action.payload };
case FETCH_USER:
return {...state, user: action.payload };
default:
return state;
}
}
减速器索引 -
import { combineReducers } from 'redux';
import { reducer as formReducer } from 'redux-form';
import usersReducer from './users_reducer';
const rootReducer = combineReducers({
form: formReducer,
users: usersReducer
});
export default rootReducer;
【问题讨论】:
-
您的用户减速器没有名称,因此当您导入索引减速器时,它不会导入 usersReducer,因为它不存在。在 NPM 中构建时是否遇到任何错误?
-
我不确定你的意思。我正在导出我的用户减速器,然后将其导入索引 - 从“./users_reducer”导入 usersReducer。我没有收到任何错误,并且我的 User reducer 在所有其他情况下都按预期工作。
-
我的意思是当你使用“导出默认函数()”时,你没有给你的函数命名。我希望看到“导出默认函数 usersReducer()”,以便索引缩减器使用它
-
名称无关紧要。我正在从一个文件中导出一个函数并从另一个文件中导入该函数。当我调用
import usersReducer from './users_reducer';时,usersReducer 现在等于从我的 users reducer 文件中导出的函数。
标签: reactjs redux react-redux redux-form