我有一个react组件,它可以从json中获取复选框,该复选框的每个部分最多可以包含5个复选框,我正在尝试将每个部分的限制设置为最多2个选择,但是它不能正常工作,主要组件是 itemlist.js ,并且复选框来自 checkbox.js ,这是我要执行的操作的实时摘录,https://codesandbox.io/embed/84lo55n689?fontsize=14 ,这些更改是在 checkbox.js 中进行的,我注释掉了该功能,并对其进行了更改以进行演示,因为这会使应用程序崩溃。
Checkbox.js
import React from "react";
import "./Checkbox.css";
/* class Checkboxes extends React.Component {
constructor(props) {
super(props);
this.state = {
currentData: [],
limit: 2
}}
componentDidMount() {
selectData(id, event){
let isSelected = event.currentTarget.checked;
if (isSelected) {
if (this.state.currentData.length < this.state.limit) {
this.setState({ currentData: [...currentData, id] })
}
}
else {
this.setState({
currentData:
this.state.currentData.filter((item) => id !== item)
})
}
}}
render() { */
const Checkboxes = props => {
const id = /*this.*/ props.childId + /*this.*/ props.childp;
return (
<form className="form">
<div>
<h2>{/*this.*/ props.title}</h2>
{/*this.*/ props.options &&
/*this.*/ props.options.map(item => {
return (
<div className="inputGroup">
<input
id={id + item.name}
name="checkbox"
type="checkbox"
// checked={this.state.currentData.indexOf(id + item.name) >= 0}
// onChange={this.selectData.bind(this, id + item.name)}
/>
<label htmlFor={id + item.name}>{item.name} </label>
</div>
);
})}
</div>
</form>
);
}; //}}
export default Checkboxes;
Itemlist.js
...
<Checkboxes
key={index}
title={item.name}
myKey={index}
options={item.children}
childk={item.id}
/>
...
答案 0 :(得分:0)
无需知道全局中是否检查了哪个元素
首先在this.state中将currentData更改为0
constructor(props) {
super(props);
this.state = {
currentData: 0,
limit: 2
};
}
然后更改selectData函数
selectData(id, event) {
let isSelected = event.currentTarget.checked;
if (isSelected) {
if (this.state.currentData < this.state.limit) {
this.setState({ currentData: this.state.currentData+1 });
}else{
event.preventDefault()
event.currentTarget.checked = false;
}
} else {
this.setState({currentData: this.state.currentData - 1});
}
}
并从输入中删除选中的属性(当页面加载为0时)
<div className="inputGroup">
<input
id={id + item.name}
name="checkbox"
type="checkbox"
onChange={this.selectData.bind(this, id + item.name)}
/>
<label htmlFor={id + item.name}>{item.name} </label>
</div>