如何在传递支票簿中的动态值时如何获取支票值以及如何在支票簿中获取这些值
答案 0 :(得分:0)
嘿,据我了解,您正在询问如何检查复选框的值(如果选中,则为true,否则为false)。
您可以将复选框值存储在组件状态中,以便可以在组件中的任何位置访问它,然后在触发setState()
事件时调用onChange
。
class Profile extends Component {
constructor(props) {
super(props);
this.state = {
checked: true
};
render() {
return (
<input
type="checkbox"
checked={this.state.checked}
onChange={checked => { this.setState({ checked }) }} />
)
}
}