我有一个映射功能,可以将JSON值显示到复选框中,我试图将这些值的子级添加为当前复选框下的复选框,并且效果很好,但是我现在想做的是显示单击父复选框后,将选中两个子复选框。
我有Side Collection 1,并且在其下有孩子(side 1和side 2),我尝试但无法做的是一旦选中(Side Collection 1复选框)后显示了(side 1和side 2复选框),复选框值作为道具从 Checkbox.js 传递到发生提取/映射的 Itemlist.js 。如果有人可以解释或演示如何实现,将不胜感激。
我已经在vanillajs中完成了我想要的功能,但是我不确定如何将其特别添加到我的react应用中,该功能是在映射函数中,我是新来的
功能片段:https://codepen.io/alaafm/pen/eXGZbO?editors=1010
反应实时代码段:https://codesandbox.io/embed/5w8vwwmn5p?fontsize=14
Checkbox.js
class Checkboxes extends React.Component {
constructor(props) {
super(props);
}
render() {
return (
<form className="form">
<div>
<h2>{this.props.title}</h2>
<div className="inputGroup">
<input
id={this.props.childk + this.props.name}
name="checkbox"
type="checkbox"
/>
<label htmlFor={this.props.childk + this.props.name}>
{this.props.name}{" "}
</label>
</div>{" "}
{this.props.options &&
this.props.options.map(item => {
return (
<div className="inputGroup2">
{" "}
<div className="inputGroup">
<input
id={this.props.childk + (item.name || item.description)}
name="checkbox"
type="checkbox"
/>
<label
htmlFor={
this.props.childk + (item.name || item.description)
}
>
{item.name || item.description}{" "}
{/** <img src={this.props.img} alt="" /> <span className="pricemod">{props.childprice} SAR</span>
*/}
</label>
</div>
</div>
);
})}
</div>
</form>
);
}
}
export default Checkboxes;
Itemlist.js
...
<div>
{selectedMod &&
selectedMod.children &&
selectedMod.children.map((item, index) => (
<Checkboxes
key={index}
name={item.name || item.description}
myKey={index}
options={item.children}
childk={item.id}
limit={item.max}
/>
))}
</div>
...
我要添加的JS函数
const myCheck2 = document.getElementById("check2");
const dib = document.getElementById("dib");
function change() {
if (myCheck2.checked) {
dib.style.display = "block";
dib2.style.display = "block";
}
else{
dib.style.display = "none";
dib2.style.display = "none";
}
}
function func2() {
if (this.checked) {
myCheck2.checked = false;
dib.style.display = "none";
}
else {
dib.style.display = "block";
myCheck2.checked = true;
}
}
myCheck2.addEventListener('click', change);
答案 0 :(得分:0)
您可以使用Checkboxes.js中的内部状态和条件渲染来显示子复选框。
import React from "react";
import "./Checkbox.css";
class Checkboxes extends React.Component {
constructor(props) {
super(props);
this.state = {
checked: false
}
}
render() {
const input2Checkboxes = this.props.options &&
this.props.options.map(item => {
return (
<div className="inputGroup2">
{" "}
<div className="inputGroup">
<input
id={this.props.childk + (item.name || item.description)}
name="checkbox"
type="checkbox"
/>
<label
htmlFor={
this.props.childk + (item.name || item.description)
}
>
{item.name || item.description}{" "}
{/** <img src={this.props.img} alt="" /> <span className="pricemod">{props.childprice} SAR</span>
*/}
</label>
</div>
</div>
);
})
return (
<form className="form">
<div>
<h2>{this.props.title}</h2>
<div className="inputGroup">
<input
id={this.props.childk + this.props.name}
name="checkbox"
type="checkbox"
checked={this.state.checked}
onChange={() => {
this.setState({checked: !this.state.checked})
}}
/>
<label htmlFor={this.props.childk + this.props.name}>
{this.props.name}{" "}
</label>
</div>{" "}
{this.state.checked ? input2Checkboxes : undefined }
</div>
</form>
);
}
}
export default Checkboxes;
答案 1 :(得分:0)
您可以利用react组件状态以及checkbox.js
组件的状态。如果状态发生变化,则组件将使用正确的复选框重新渲染。
我建议让状态为布尔值,以了解是否选中了幻灯片集合复选框,并让父复选框输入的onChange函数看起来像这样:
<input
id={this.props.childk + this.props.name}
name="checkbox"
type="checkbox"
onChange={()=> this.setState({parentCheckbox:!this.state.parentCheckbox})}
/>
然后在通过this.props.options映射以呈现子复选框的方法中,您可以为仅在this.state.parentCheckbox
为真时才呈现的输入标签有条件语句-请参阅下面的方法。
render() {
return (
<form className="form">
<div>
<h2>{this.props.title}</h2>
<div className="inputGroup">
<input
id={this.props.childk + this.props.name}
name="checkbox"
type="checkbox"
onChange={()=> this.setState({parentCheckbox:!this.state.parentCheckbox})}
/>
<label htmlFor={this.props.childk + this.props.name}>
{this.props.name}{" "}
</label>
</div>{" "}
{this.props.options &&
this.props.options.map(item => {
return (
<div className="inputGroup2">
{" "}
<div className="inputGroup">
{ this.state.parentCheckbox && (<input
id={this.props.childk + (item.name || item.description)}
name="checkbox"
type="checkbox"
/>)}
<label
htmlFor={
this.props.childk + (item.name || item.description)
}
>
{item.name || item.description}{" "}
{/** <img src={this.props.img} alt="" /> <span className="pricemod">{props.childprice} SAR</span>
*/}
</label>
</div>
</div>
);
})}
</div>
</form>
);
}
}