通过单击react-data-export在单击按钮(单击按钮一次再单击一次)上下载Excel文件

时间:2018-11-25 15:48:13

标签: reactjs react-redux

我有一个导出按钮,当我第一次单击时,下载了工作表,但稍后发生单击事件,但工作表不导出。 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>
);
}

}

0 个答案:

没有答案