Presentation Layer Here I am using antd's Upload upload component Quote part of antd code import { Button,Table,Upload } from 'antd'; <Upload {...props} fileList={state.fileList}> <Button type="primary" >Excel Import</Button> </Upload> <Button type="primary" onClick={handleExport}>Excel export</Button> Business LayerFirst, let’s analyze the work:
Here are the technical details Core plugin xlsx Install xlsx: Mainly introduce the core API used:
// workbook understanding: { SheetNames: ['sheet1', 'sheet2'], Sheets: // worksheet 'sheet1': { // cell 'A1': { ... }, // cell 'A2': { ... }, ... }, // worksheet 'sheet2': { // cell 'A1': { ... }, // cell 'A2': { ... }, ... } } } Excel import Core code: const f = file; const reader = new FileReader(); reader.onload = function (e) { try{ const datas = e.target.result; const workbook = XLSX.read(datas, {type: "binary",}); //parse datas const first_worksheet = workbook.Sheets[workbook.SheetNames[0]]; //It is the first sheet in the workbook const jsonArr = XLSX.utils.sheet_to_json(first_worksheet, {header: 1,defval:''}); //Convert the workbook object to a JSON object array handleImpotedJson(jsonArr) //Array processing message.success('Excel upload parsing successful!') }catch(e){ message.error('Incorrect file type! Or file parsing error') } }; reader.readAsBinaryString(f); understand:
Excel export Core code: const downloadExcel = () => { const json = handleExportedJson(data) const sheet = XLSX.utils.json_to_sheet(json); openDownloadDialog(sheet2blob(sheet,"Sheet1"), "Download file.xls") } const handleExportedJson = (array) =>{...} // Process Json data const openDownloadDialog = (url, saveName) =>{...} // Open download const sheet2blob = (sheet, sheetName) =>{...} // Convert to blob type understand:
Excel export plugin (js-export-excel) Why didn't I post the self-implemented code before? It's because I found a useful plug-in. The code is very simple. Core code: // Export file directly let dataTable = []; //Data content in excel file let option = {}; //option represents excel file dataTable = data; //Data source option.fileName = "Download file"; //Excel file name console.log("data===",dataTable) option.datas = [ { sheetData: dataTable, //data source in excel filesheetName: 'Sheet1', //sheet page name in excel filesheetFilter: ['id', 'name', 'belong', 'step','tag'], //column data to be displayed in excel filesheetHeader: ['project id', 'project name', 'company', 'project stage','project tag'], //header name of each column in excel file} ] let toExcel = new ExportJsonExcel(option); //Generate excel file toExcel.saveExcel(); //Download excel file The above is the basic usage of this plug-in. It also supports exporting Blobs and compression. For details, see the official website to explain the core option:
/*Multiple sheets*/ /*Each sheet is an object */ [{ sheetData:[], // datasheetName:'', // (optional) sheet name, default is sheet1 sheetFilter:[], // (optional) column filter (only works when data is object) sheetHeader:[] // First row, title columnWidths: [] // (optional) column width, must correspond to the column order}] Browser support: ie 10+ I tested that the demo works in chrom, Safari, and IE. Achieve results If you still don't understand, you can look at the GitHub demo source code ConclusionThis is the end of this article about React import and export of Excel files. For more relevant React import and export Excel content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: How to correctly modify the ROOT password in MySql8.0 and above versions
>>: Detailed explanation of nginx shared memory mechanism
1. Add the plug-in and add the following configur...
What is a profile? We can use it when we want to ...
Table of contents Preface🌟 1. API Introduction 2....
<br />In previous tutorials of 123WORDPRESS....
When we write pages, we sometimes find that the C...
Table of contents 1. let keyword 1.1 Basic Usage ...
Linux and Unix are multi-user operating systems, ...
What is text wrapping around images? This is the ...
Table of contents Preface What situations can cau...
Table of contents 1. Switch between production en...
background I talked to my classmates about a boun...
This article example shares the specific code of ...
Reasons why the 1px line becomes thicker When wor...
To achieve CSS screen size adaptation, we must fi...
Services provided by NFS Mount: Enable the /usr/s...