如何在Redux-form

时间:2018-01-24 10:19:16

标签: javascript reactjs react-redux redux-form react-select

我正在使用redux-form的字段数组,我需要一个可搜索的下拉菜单。我知道正常下拉可以这样做,

<Field name={`${object}.method`} component="select" validate={required} id={`${object}.key`}>
       <option value="id">id</option>
       <option value="css">css</option>
       <option value="xpath">xpath</option>
       <option value="binding">binding</option>
       <option value="model">model</option>
</Field>

但这不是可搜索的下拉列表。即使我使用它,这只是给出一个基本的html选择,我如何能够将css样式应用于此以使其与其他引导元素匹配?

要获得可搜索的下拉列表,我正在使用react-select包。我试图做的是;

<Field
    name={`${object}.method`}
    type='text'
    component={this.renderDropdown}
    label="Method"
    validate={required}
    id={`${object}.key`}
    valueField='value'
/>

renderDropdown = ({ input, id, valueField, meta: { touched, error }, ...props }) => {
    return (
        <React.Fragment>
            <div className='align-inline object-field-length'>
                <Select {...input} id={id} value={input.value.value} onChange={input.onChange}
                    options={[
                        { value: 'id', label: 'id' },
                        { value: 'css', label: 'css' },
                        { value: 'xpath', label: 'xpath' },
                        { value: 'binding', label: 'binding' },
                        { value: 'model', label: 'model' },
                    ]}
                />
            </div>
        </React.Fragment>
    )
};

这不能正常工作,只有当下拉列表处于活动状态时才会存储在redux-store中(当点击它时),在事件模糊时会丢失该值。

我在这里做错了什么?

是否可以使用redux-form提供可搜索的下拉列表?

2 个答案:

答案 0 :(得分:3)

回答我自己的问题,最后我认为我不能使用带反射形式的react-select包。

当选择该值时,它会被添加到react-store,但会在事件模糊时丢失值。发生这种情况是因为redux-form onBlur事件触发了一个动作,该动作在其有效载荷中传递null。为避免这种情况,github issue thread

中提到了几个解决方案

通过定义处理onBlur的自定义方法为我做了它;

renderDropdown = ({ input, onBlur, id, meta: { touched, error }, ...props }) => {

 const handleBlur = e => e.preventDefault();

    return (
        <React.Fragment>
            <Select {...input}
                id="object__dropdown--width"
                options={allRepos}
                onChange={input.onChange}
                onBlur={handleBlur} 
            />
        </React.Fragment>
    )
}



  <Field name="listAllRepo" 
      value="this.state.accountno" 
      component={this.renderDropdown} 
      placeholder="Select" 
  />

希望这对其他人有帮助!

答案 1 :(得分:0)

有反应选择包用于反应,提供可搜索的功能

<Select
        name="form-field-name"
        value={value}
        onChange={this.handleChange}
        options={[
          { value: 'one', label: 'One' },
          { value: 'two', label: 'Two' },
        ]}
        searchable={true}
      />

关注github