我需要做的是-在数组中添加/删除每个复选框的名称(由用户选中/取消选中),然后发送到服务器。我陷入下面的代码中。任何帮助表示赞赏。谢谢
class App extends Component<Props> {
render() {
return (
<View style={{ padding: 15 }}>
{
response.map(
item => {
return (
<CheckBoxItem label={item.name} />
);
}
)
}
</View>
);
}
}
CheckBoxItem.js
class CheckBoxItem extends Component<Props> {
state = {
check: false,
problemTypeArray: [],
}
changeArray = (label) => {
let array = [...this.state.problemTypeArray, label];
let index = array.indexOf(label);
console.log('array', array);//returns array with length 1 all the time
}
render() {
return (
<View>
<CheckBox value={this.state.check} onValueChange={(checkBoolean) => { this.setState({ check: checkBoolean }); this.changeArray(this.props.label); }} />
<MyText>{this.props.label}</MyText>
</View>
);
}
}
export default CheckBoxItem;
答案 0 :(得分:1)
真正的诀窍是维护父组件中所选项目的列表。每个CheckBoxItem
都可以控制自己的状态,但是每次检查/取消检查时,您都需要将值传递回父组件。
由于您没有显示CheckBox
组件的来源,因此我将向您展示如何使用react-native-elements
CheckBox
来实现。然后可以将这些原理应用于您自己的CheckBox
。
这里是App.js
import CheckBoxItem from './CheckBoxItem'
export default class App extends React.Component {
// set some initial values in state
state = {
response: [
{
name:'first'
},
{
name:'second'
},
{
name:'third'
},
{
name:'fourth'
},
{
name:'fifth'
},
{
name:'sixth'
},
],
selectedBoxes: [] // this array will hold the names of the items that were selected
}
onUpdate = (name) => {
this.setState(previous => {
let selectedBoxes = previous.selectedBoxes;
let index = selectedBoxes.indexOf(name) // check to see if the name is already stored in the array
if (index === -1) {
selectedBoxes.push(name) // if it isn't stored add it to the array
} else {
selectedBoxes.splice(index, 1) // if it is stored then remove it from the array
}
return { selectedBoxes }; // save the new selectedBoxes value in state
}, () => console.log(this.state.selectedBoxes)); // check that it has been saved correctly by using the callback function of state
}
render() {
const { response } = this.state;
return (
<View style={styles.container}>
{
response.map(item => <CheckBoxItem label={item.name} onUpdate={this.onUpdate.bind(this,item.name)}/>)
}
</View>
);
}
}
这里是CheckBoxItem
import { CheckBox } from 'react-native-elements'
class CheckBoxItem extends Component<Props> {
state = {
check: false, // by default lets start unchecked
}
onValueChange = () => {
// toggle the state of the checkbox
this.setState(previous => {
return { check: !previous.check }
}, () => this.props.onUpdate());
// once the state has been updated call the onUpdate function
// which will update the selectedBoxes array in the parent componetn
}
render() {
return (
<View>
<CheckBox
title={this.props.label}
checked={this.state.check}
onPress={this.onValueChange}
/>
</View>
);
}
}
export default CheckBoxItem;
创建CheckBoxItem
时,有两件事会传递给它。一个是标签,第二个是onUpdate
函数。 onUpdate
函数将CheckBoxItem
链接回父组件,以便它可以操纵父组件中的状态。
在应用此更新之前,onUpdate
函数采用状态的前一个值,并查看selectedBoxes
数组中是否存在复选框的名称。如果它存在于selectedBoxes
数组中,则将其删除,否则将其添加。
现在,父组件中存在一个可以访问的数组,其中包含所有已选择的项。
想尝试我的代码吗?好吧,我制作了一种小吃,说明它可以正常工作https://snack.expo.io/@andypandy/checkboxes
您可能已经注意到,我在setState
上做一些不寻常的事情。我确保通过使用状态的先前值然后将我的更新应用于状态来正确调用setState
。我还使用了这样的事实:状态更新后,setState
进行回调以执行操作。如果您想了解更多信息,请参阅setState
上的一些很棒的文章。