我有一个导出按钮,当我第一次单击时,下载了工作表,但稍后发生单击事件,但工作表不导出。 ExcellSheet数据没有更改,我想再次下载相同的数据。 知道如何实现吗?
class Export extends Component {
static propTypes = {
exDataSet: PropTypes.array,
dataset: PropTypes.object
};
constructor(props, context) {
super(props, context);
}
render() {
debugger
return (
<ExcelFile
hideElement={true}
element={
<button type="button" className="btn btn-link" >
<span>Export</span>
<i className="left-space-5 fa fa-file-excel-o" />
</button>
}
>
<ExcelSheet dataSet={this.props.exDataSet} name="Organization" />
</ExcelFile>
);
}
}