ElemeFE / element-react

Element UI
https://elemefe.github.io/element-react/index
MIT License
2.83k stars 443 forks source link

table表格使用splice删除数据后,表格数据依然存在 #979

Open zhaosheng808 opened 5 years ago

zhaosheng808 commented 5 years ago

Description

table表格删除数据后,数据依然存在,并且数据清空后会出现暂时数据表格和数据同时存在

Reproduce Steps

const {data} = this.state;
data.splice(0, 1);
this.setState({
  data
})

使用这种方式删除数据后,表格数据依然存在,一直删除完所有的数据,表格数据没发生变化,但是,多出一列‘暂无数据’

暂时可以使用const data = [...this.state.data]解决 image

AlexVagrant commented 5 years ago

目前版本setState数据存在这个问题,下个版本修复了,调用删除接口组件更新后暂时没有这个问题