我正在使用 react-sortable-tree 的示例,但它不适用于react 17.0.1。
当我使用 react 16.14.0 时,它没有错误并且工作正常。
错误列表:
- 无法在卸载的组件上找到节点。在 findHostInstanceWithWarning
- 未捕获的类型错误:this.clearMonitorSubscription 不是 ScrollingComponent.componentWillUnmount 的函数
- <Scrolling(List)> 组件出现上述错误:
import React from 'react'
import 'react-sortable-tree/style.css'
import SortableTree from 'react-sortable-tree'
class Areas extends React.Component {
constructor(props) {
super(props)
this.state = {
treeData: [
{ title: 'Chicken', children: [{ title: 'Egg' }] },
{ title: 'Fish', children: [{ title: 'fingerline' }] }
]
}
}
render() {
return (
<div style={{ height: 400 }}>
<SortableTree
treeData={this.state.treeData}
onChange={treeData => this.setState({ treeData })}
/>
</div>
)
}
}