繁体   English   中英

在已卸载的组件上找不到节点

[英]Unable to find node on an unmounted component

<FormControl >
    <InputLabel htmlFor="select-multiple-chip">Chip</InputLabel>
    <Select
        value = {this.state.name} 
        input={<Input id="select-multiple-chip" />}
    >
        {this.state.names.map(name => (
            <MenuItem key={name} value={name} >
                {name}
            </MenuItem>
        ))}
    </Select>

我正在尝试选择值,但出现错误, unable to find an node on an unmounted component

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM