反应 JS 无线电输入状态



使用 React 管理无线电和复选框状态的正确方法是什么?

在某些情况下,表单将呈现部分完成,因此在首次加载时会预先选中某些单选按钮和复选框。

我有以下代码片段,但我无法让它按预期工作。

    var formData = {
  "id": 13951,
  "webform_id": 1070,
  "page": 0,
  "type": "radios",
  "name": "What industry are you in?",
  "tooltip": "",
  "weight": 0,
  "is_required": 1,
  "default_value": "",
  "validation": "",
  "allow_other_option": 0,
  "other_option_text": "",
  "mapped_question_id": "a295189e-d8b4-11e6-b2c5-022a69d30eef",
  "created_at": "2017-04-07 18:40:39",
  "updated_at": "2017-04-07 18:40:39",
  "option_conditional_from": null,
  "default_value_querystring_key": "",
  "deleted_at": null,
  "is_auto_save": 0,
  "is_component_number_hidden": 0,
  "is_component_inline": 0,
  "enable_confirm_validation": 0,
  "confirm_validation_text": null,
  "additional_options": "",
  "url_mapping": "",
  "webformcomponentoptions": [
    {
      "id": 13888,
      "webform_component_id": 13951,
      "key": "Hospitality",
      "value": "Hospitality",
      "created_at": "2017-04-07 18:40:39",
      "updated_at": "2017-04-07 18:40:39",
      "group": "",
      "selected" : false
    },
    {
      "id": 13889,
      "webform_component_id": 13951,
      "key": "Retail",
      "value": "Retail",
      "created_at": "2017-04-07 18:40:39",
      "updated_at": "2017-04-07 18:40:39",
      "group": "",
      "selected" : false
    },
    {
      "id": 13890,
      "webform_component_id": 13951,
      "key": "Other",
      "value": "Other",
      "created_at": "2017-04-07 18:40:39",
      "updated_at": "2017-04-07 18:40:39",
      "group": "",
      "selected" : false
    }
  ]
}
class WebformApp extends React.Component {
  render() {
    return (
      <form>
        <label>{this.props.webform.name}</label>
        <div className="group-wrapper">
          <Radio radio={this.props.webform.webformcomponentoptions} />
        </div>
      </form>
    )
  }
}
class Radio extends React.Component {
  render() {
    var options = [];
    this.props.radio.forEach(function(radio, i) {
      options.push(<Option option={radio} key={radio.id} index={i}  />);
    })
    return (
      <div>{options}</div>
    )
  }
}
class Option extends React.Component {
  constructor(props) {
    super(props);
    this.handleOptionChange = this.handleOptionChange.bind(this);
    this.state = {selectedIndex: null};
  }
  handleOptionChange(e) {
    this.setState({selectedIndex: this.props.index}, function() {
    });
  }
  render() {
    const selectedIndex = this.state.selectedIndex;
    return (
      <div>
        <input type="radio"
          value={this.props.option.value}
          name={this.props.option.webform_component_id}
          id={this.props.option.id}
          checked={selectedIndex === this.props.index}
          onChange={this.handleOptionChange} />
        <label htmlFor={this.props.option.id}>{this.props.option.key}</label>
      </div>
    )
  }
 }
ReactDOM.render(
  <WebformApp webform={formData} />,
  document.getElementById('app')
);

https://codepen.io/jabreezy/pen/KWOyMb

最重要的是让Radio组件处理状态,并跟踪所选选项。

此外,我将通过使用 map 而不是 forEach 来简化,并放弃返回 <input type='radio'> 的类方法的Option组件。为简单起见,使用选项value来跟踪选定的状态而不是index,并模仿 React 的 select 组件,允许默认的 value prop 而不是设置每个选项的 selected prop(您似乎没有使用(。

最后,为了秩序起见,将Radio :s radio道具重命名为 (IMO( 更正确的options。因此(警告,我还没有测试过这个(:

class WebformApp extends React.Component {
  render() {
    return (
      <form>
        <label>{this.props.webform.name}</label>
        <div className="group-wrapper">
          <Radio options={this.props.webform.webformcomponentoptions} value={this.props.webform.value} />
        </div>
      </form>
    )
  }
}
class Radio extends React.Component {
  constructor (props) {
    super(props)
    this.handleOptionChange = this.handleOptionChange.bind(this)
    this.state = {value: this.props.value}
  }
  render() {
    return this.props.options.map(this.getOption)
  }
  handleOptionChange (e) {
    this.setState({value: e.target.value})
  }
  getOption (option) {
    return (
      <div>
        <input type='radio'
          value={option.value}
          name={option.webform_component_id}
          id={option.id}
          key={option.id}
          checked={this.state.value === option.value}
          onChange={this.handleOptionChange} />
        <label htmlFor={option.id}>{option.key}</label>
      </div>
    )
  }
}
ReactDOM.render(
  <WebformApp webform={formData} />,
  document.getElementById('app')
);

非常感谢您的输入 Linus。 你让我走上了正确的道路,我已经通过以下方式解决了我的问题:

var formData = {
  "id": 13951,
  "webform_id": 1070,
  "page": 0,
  "type": "radios",
  "name": "What industry are you in?",
  "tooltip": "",
  "weight": 0,
  "is_required": 1,
  "default_value": "",
  "validation": "",
  "allow_other_option": 0,
  "other_option_text": "",
  "mapped_question_id": "a295189e-d8b4-11e6-b2c5-022a69d30eef",
  "created_at": "2017-04-07 18:40:39",
  "updated_at": "2017-04-07 18:40:39",
  "option_conditional_from": null,
  "default_value_querystring_key": "",
  "deleted_at": null,
  "is_auto_save": 0,
  "is_component_number_hidden": 0,
  "is_component_inline": 0,
  "enable_confirm_validation": 0,
  "confirm_validation_text": null,
  "additional_options": "",
  "url_mapping": "",
  "webformcomponentoptions": [
    {
      "id": 13888,
      "webform_component_id": 13951,
      "key": "Hospitality",
      "value": "Hospitality",
      "created_at": "2017-04-07 18:40:39",
      "updated_at": "2017-04-07 18:40:39",
      "group": "",
      "selected" : false
    },
    {
      "id": 13889,
      "webform_component_id": 13951,
      "key": "Retail",
      "value": "Retail",
      "created_at": "2017-04-07 18:40:39",
      "updated_at": "2017-04-07 18:40:39",
      "group": "",
      "selected" : false
    },
    {
      "id": 13890,
      "webform_component_id": 13951,
      "key": "Other",
      "value": "Other",
      "created_at": "2017-04-07 18:40:39",
      "updated_at": "2017-04-07 18:40:39",
      "group": "",
      "selected" : false
    }
  ]
}
class WebformApp extends React.Component {
  render() {
    return (
      <form>
        <label>{this.props.webform.name}</label>
        <div className="group-wrapper">
          <Radio radio={this.props.webform.webformcomponentoptions} />
        </div>
      </form>
    )
  }
};
class Radio extends React.Component {
  constructor(props) {
    super(props);
    this.state = {selectedOption: 'Other'};
  }
  handleOptionChange(changeEvent) {
    this.setState({
      selectedOption: changeEvent.target.value
    })
  };
  renderOption(props) {
    return (
      <div>
        <h3>{props.index}</h3>
        <input type="radio"
          value={props.option.value}
          name={props.option.webform_component_id}
          id={props.option.id}
          checked={props.status}
          onChange={props.clickeme} />
        <label htmlFor={props.option.id}>{props.option.key}</label>
      </div>
    )
  };
  render() {
    return (
      <div>
        {this.props.radio.map(function(radio) {
          var selected = this.state.selectedOption === radio.value;
          return <this.renderOption option={radio} key={radio.value} status={selected} clickeme={(e)=> this.handleOptionChange(e)} />;
        }, this)}
      </div>
    )
  };
};
ReactDOM.render(
    <WebformApp webform={formData} />,
    document.getElementById('app')
);
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react-dom.min.js"></script>
<div id="app"></div>

最新更新