简体   繁体   English

React - 显示/隐藏来自不同复选框的多个 div

[英]React - Show/Hide multiple divs from different check boxes

I am new in react, I have certain domain in JS, I imagine this is a simple question but I have been searching for 2 hours and I haven't found a satisfactory answer :(我是 React 新手,我在 JS 中有一定的领域,我想这是一个简单的问题,但我已经搜索了 2 个小时,但没有找到满意的答案:(

I have the check boxes:我有复选框:

<Col md="4">
  <FormGroup>
    <Label>Have Children</Label>
    <CustomInput type="radio" name="customRadio" label="Yes" value="yes" />
    <CustomInput type="radio" name="customRadio" label="No" value="no" />
  </FormGroup>
</Col>
<Col md="4">
  <FormGroup>
    <Label>Have Spouse</Label>
    ...(same as children input)
  </FormGroup>
</Col>
<Col md="4">
  <FormGroup>
    <Label>Have Family Members</Label>
    ...(same as children input)
  </FormGroup>
</Col>

If you click on "have children" I want that some divs after, related to children, to be displayed.如果您单击“有孩子”,我希望显示一些与孩子相关的 div。 If not, they should be hidden.如果没有,它们应该被隐藏。 And the same for the other options.其他选项也是如此。

I want to know what is the cleanest way to do this.我想知道什么是最干净的方法来做到这一点。

The checkbox should toggle a boolean in state.复选框应该在状态中切换一个布尔值。

You then conditionally render the children if the value in state is true.然后,如果 state 中的值为 true,则有条件地呈现子项。

So attach a checked value and change handler to your groups:因此,将选中的值和更改处理程序附加到您的组:

      <FormGroup>
        <Label>Have Children</Label>
        <CustomInput type="radio" name="customRadio" label="Yes" value="yes" onChange={() => this.handleChange} checked={this.state.visibility} />
        <CustomInput type="radio" name="customRadio" label="No" value="no" onChange={() => this.handleChange} checked={!this.state.visibility}/>
      </FormGroup>

The create the state value in your class and toggle it with the handleChange method在您的类中创建状态值并使用 handleChange 方法切换它

state = {visibility: false}

handleChange = () => this.setState({visibility: !this.state.visibility})

Then you can conditionally render your thing based on the visibility boolean, so...然后你可以根据可见性布尔值有条件地渲染你的东西,所以......

<div>{this.state.visibility && <p>Now You see me</p>}</div>

Just think of the data structure beforehand.只需事先考虑数据结构。

From your question, I assume you simply want something like this:从你的问题来看,我假设你只是想要这样的东西:

  1. If children checkbox is checked, show elements related to children如果children复选框被选中,显示与children相关的元素
  2. If spouse checkbox is checked, show elements related to spouse .如果spouse复选框被选中,显示与spouse相关的元素。
  3. etc.等等。

The way I see it, you need an array of checkboxes with each of their statuses (checked or not).在我看来,您需要一组带有每个状态(选中或未选中)的复选框。 You can store this information in the component state.您可以将此信息存储在组件状态中。

// in the constructor
this.state = {
  checkboxes: [
    { id: 1, label: 'children', checked: false },
    { id: 2, label: 'spouse', checked: false },
  ],
}

Then, in your render() function, you just need to loop through the array like this:然后,在你的render()函数中,你只需要像这样循环遍历数组:

const { checkboxes } = this.state;

return (
  <div>
    {checkboxes.map((checkbox, index) => (
      <div>
        <label>{checkbox.label}</label>
        <input type="checkbox" checked={checkbox.checked} onClick={() => this.toggleCheckBox(index)} />
        {checkbox.checked && <div>show this if the checkbox is checked</div>}
      </div>
    ))}
  </div>
);

Just remember to implement this.toggleCheckBox method in the class.只记得在类中实现this.toggleCheckBox方法。 If you are unsure of how to do it, here's a codesandbox for you to check out.如果您不确定如何操作,这里有一个代码和框供您查看。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM