React with Material UI中带有扩展面板的多个标签输入

时间:2019-04-03 05:33:38

标签: reactjs frontend material-ui

我有多个扩展面板,我试图在每个面板中添加标签,但是,当我在特定面板中添加标签时,它会自动显示所有扩展面板的标签。 我正在使用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);

0 个答案:

没有答案