gpt4 book ai didi

javascript - 如何从 react-bootstrap 复选框获取值/属性?

转载 作者:数据小太阳 更新时间:2023-10-29 04:23:27 25 4
gpt4 key购买 nike

我正在尝试使用 react-bootstrap 复选框 ( https://react-bootstrap.github.io/components.html#forms-controls ),我需要在它改变状态时触发一个事件。能够以编程方式取消/检查它和/或判断它是否被检查也很棒。不幸的是,当代码被转译和呈现时,它会将输入包装在一个 div 中。

如何在 dom 中找到它并对其进行操作?

我的代码看起来类似于:

import React, { PropTypes } from 'react';
import { Checkbox } from 'react-bootstrap';

const EditItem = (props) => {

return (
<div>
<Checkbox style={{ marginLeft: '15px' }} >{props.itemLable}</Checkbox>
</div>
);
};

export default EditItem;

然后浏览器呈现这个:

...
<div class="checkbox" style="margin-left: 15px;">
<label>
<input type="checkbox">
</label>
</div>
...

我在文档中看到了 inputRef Prop ,但我找不到这方面的任何示例或让它自己工作。

最佳答案

有两种方式:React 方式和非 React 方式。

React 方法是通过传递 props 来设置子组件的状态,并通过附加事件处理程序来响应其状态的变化。对于 Checkbox,这意味着设置 checkedonChange Prop 。

请注意以下示例中的父组件 (App) 如何跟踪复选框的状态,并可以使用 this.setState 设置它并使用 this.state.checkboxChecked< 查询它.

const { Checkbox, Button } = ReactBootstrap;

class App extends React.Component {
constructor() {
super();
this.state = { checkboxChecked: false };
this.handleChange = this.handleChange.bind(this);
this.handleIsItChecked = this.handleIsItChecked.bind(this);
this.handleToggle = this.handleToggle.bind(this);
}

render() {
return (
<div>
<Checkbox
checked={this.state.checkboxChecked}
onChange={this.handleChange} />
<Button type="button" onClick={this.handleToggle}>Toggle</Button>
<Button type="button" onClick={this.handleIsItChecked}>Is it checked?</Button>
</div>
);
}

handleChange(evt) {
this.setState({ checkboxChecked: evt.target.checked });
}

handleIsItChecked() {
console.log(this.state.checkboxChecked ? 'Yes' : 'No');
}

handleToggle() {
this.setState({ checkboxChecked: !this.state.checkboxChecked });
}
}

ReactDOM.render(<App/>, document.querySelector('div'));
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/latest/css/bootstrap.min.css">
<script src="//cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react-dom.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/react-bootstrap/0.30.8/react-bootstrap.min.js"></script>
<div></div>

不太 React 的方法是获取对呈现的 DOM 元素的引用并直接访问其 checked 属性。我不推荐这样做,因为它必然会用讨厌的命令式代码污染你可爱的功能性 React 代码。不过,使用 React-Bootstrap,您可以通过设置 inputRef 属性来实现,如下例所示:

const { Checkbox, Button } = ReactBootstrap;

class App extends React.Component {
constructor() {
super();
this.handleIsItChecked = this.handleIsItChecked.bind(this);
this.handleToggle = this.handleToggle.bind(this);
}

render() {
return (
<div>
<Checkbox
onChange={this.handleChange}
inputRef={ref => this.myCheckbox = ref} />
<Button type="button" onClick={this.handleToggle}>Toggle</Button>
<Button type="button" onClick={this.handleIsItChecked}>Is it checked?</Button>
</div>
);
}

handleIsItChecked() {
console.log(this.myCheckbox.checked ? 'Yes' : 'No');
}

handleToggle() {
this.myCheckbox.checked = !this.myCheckbox.checked;
}
}

ReactDOM.render(<App/>, document.querySelector('div'));
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/latest/css/bootstrap.min.css">
<script src="//cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/react/15.1.0/react-dom.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/react-bootstrap/0.30.8/react-bootstrap.min.js"></script>
<div></div>

关于javascript - 如何从 react-bootstrap 复选框获取值/属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42682406/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com