const file = new Blob([response], { type: 'application/vnd.ms-excel' })
const fileName = 'report.xls'
saveAs(file, fileName)
})
}
render() {
return (
<div>
<button className="btn btn-primary" onClick={this.exportToExcel}>Export To Excel</button>
</div>
)
}
componentDidMount() {
}
componentWillUnmount() {
}
}
创作工场
免责声明:
以上内容除特别注明外均来源于网友提问,创作工场回答,未经许可,严谨转载。
点击这里>>使用🔥专业版,更聪明、更完整、更原创!