我有多个扩展面板,我试图在每个面板中添加标签,但是,当我在特定面板中添加标签时,它会自动显示所有扩展面板的标签。 我正在使用Material UI和React。
请找到下面所附的代码:
handleAddition(tag) {
this.setState(state => ({ tags: [...state.tags, tag] }));
}
我的构造函数代码:
this.state = {
students: [],
searchedName: "",
filteredStudents: [],
tags: [],
};
this.filterList = this.filterList.bind(this);
this.handleChange = this.handleChange.bind(this);
this.handleAddition = this.handleAddition.bind(this);