如果某个项目以前未包含在列表中,我想将其推送到列表中。如果存在,则删除该项目。我能够完成第一部分,但不知道如何删除它。
handleCityCheckbox = (param1) => {
var { cityList = [] } = this.state;
//if cityList doesnt have param1
if (!cityList.includes(param1)) {
cityList.push(param1);
this.setState({ cityList });
} else {
}
this.setState({ cityList });
};
其他部分是什么?
有只小跳蛙
潇湘沐
相关分类