Redux-Form中的可编辑组合框

时间:2016-12-15 21:55:28

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

与此主题相似的内容:How can I create an editable combo box in HTML/Javascript?

是否可以在Redux-Form中使用组合框形式?

1 个答案:

答案 0 :(得分:1)

这对我有用:

<Field
    options={[
      {value: 1, text: 'Option1'},
      {value: 2, text: 'Option2'}
    ]}
    component={Select}
    label="My select question"
    className="col-md-6"
  />

const Select = ({input, options, label, error}) => {
  if (error && error.length > 0) {
    className += " " + 'has-error'
  }
  return (
    <div className={className}>
      {label && <label htmlFor={input.name}>{label}</label>}
        <select {...input} >
          {options.map(function (option, i) {
            return (
              <option
                value={option.value}
                key={i}
              >
                {option.text}
              </option>)
          })}
        </select>
        {error && <div className="alert alert-danger">{error}</div>}
    </div>
  )
}