0

我在 redux-form 中有一个 material-ui 下拉菜单,我想初始化它的值。通过调度两个动作,我得到了我想要的值 [exercise.exercise_type_idexercise.exercise_type_name] 和可用选项列表 [ 、具有和属性types的对象数组等]:idname

componentWillMount(){
    this.props.actions.exercise.fetchInfo(this.props.params.exerciseId);
    this.props.actions.exercise.fetchAllTypes();
};

理想情况下,我希望有类似的地方

_.map(this.props.types, (type) =>{
            if (type.id == this.props.exercise.exercise_type_id){
                this.setState({
                    dropDownValue: type.name
                });
            }
        }); 

但仅限于初始状态,因为我们想用handleDropDownChange.

[当然我会很感激像

state = {
    dropDownValue: {this.props.exercise.exercise_type_name}
};

但我知道这是一种反模式。但无论如何它不起作用,道具仍然是空的。]

我的下拉列表是这样的:

<DropDownMenu {...exercise_type_name} //does nothing
        value={dropDownValue}
        onChange={onDropDownChange}>
    {_.map(types, (type) => {
        return <MenuItem key={type.id} value={type.name} primaryText={type.name}/>;
    })}

更多代码:

//...

state = {
        dropDownValue: ''
    };

//...

handleDropDownChange = (event, index, value) => {
        this.setState({
            dropDownValue: value
        });
    };

//...

  function mapStateToProps(state){
    return {
        exercise: getExerciseInfo(state),
        initialValues: getExerciseInfo(state),
        request: getExRequest(state),
        types: getExTypes(state)
    };
}

//....

export default reduxForm({
    form: 'EditExerciseForm',
    fields: ['exercise_type_name', 'max_errors_percentage', 'min_speed']
}, mapStateToProps, mapDispatchToProps)(ExerciseEdit);
4

1 回答 1

1

啊,结果比我想象的要简单。

这解决了我的问题:

DropDownMenu组件中,它的值应该是:

value={dropDownValue || exercise_type_name.value}
于 2016-06-07T09:27:08.797 回答