React implements import and export of Excel files

React implements import and export of Excel files

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 Layer

First, let’s analyze the work:

  • Import Excel work: users upload Excel tables, convert the table contents into JSON objects for backend processing, and the backend stores the data in the database;
  • Export Excel work: Get the back-end json format data, the front-end converts the data into a sheet workbook object, and the generated object is converted into an Excel table for download and export;

Here are the technical details

Core plugin xlsx

Install xlsx: npm install xlsx --save-dev

Mainly introduce the core API used:

  • XLSX.read(data,type) // Parse Excel data
  • workbook.Sheets[workbook.SheetNames[0]] // Get the first sheet in the workbook object. The user is required to have only one sheet. If you do not understand workbook, please see the explanation below.
  • XLSX.utils.sheet_to_json(wb.Sheets[wb.SheetNames[0]], {header:1,defval:''})// Convert the workbook object to a JSON object array. Note that if defval is not set to '', the default value is empty
  • XLSX.utils.json_to_sheet(json) // Convert json object to workbook object
// 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:

  • The FileReader object instantiates the file object and processes it in the onload event
  • XLSX.read parses data
  • XLSX.utils.sheet_to_json(first_worksheet, {header: 1,defval:''}) Converts the parsed workbook object to a JSON object

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:

  • Get the processed json format data
  • XLSX.utils.json_to_sheet(json) Convert to sheet workbook object
  • sheet2blob(sheet,saveName) Converts a workbook object into a blob
  • openDownloadDialog creates a blob address and implements the download action through the <a> tag

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:

  • fileName Download file name (default: download)
  • datas
/*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

Conclusion

This 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:
  • Step by step guide to build a calendar component with React
  • Summary of some common uses of refs in React
  • Detailed analysis of the difference between Ref and Reactive in Vue3.0
  • The process of building a development environment based on visual studio code + react
  • Teach you how to use vscode to build a react-native development environment
  • Teach you how to implement a react from html
  • React concurrent function experience (front-end concurrent mode)
  • React+TypeScript project construction case explanation

<<:  How to correctly modify the ROOT password in MySql8.0 and above versions

>>:  Detailed explanation of nginx shared memory mechanism

Recommend

Bugs encountered when using mybatis-generator with mysql8.0.3 in IDEA

1. Add the plug-in and add the following configur...

Tutorial on how to use profile in MySQL

What is a profile? We can use it when we want to ...

Usage and best practice guide for watch in Vue3

Table of contents Preface🌟 1. API Introduction 2....

XHTML tags should be used properly

<br />In previous tutorials of 123WORDPRESS....

CSS style does not work (the most complete solution summary in history)

When we write pages, we sometimes find that the C...

Based on JavaScript ES new features let and const keywords

Table of contents 1. let keyword 1.1 Basic Usage ...

Modify file permissions (ownership) under Linux

Linux and Unix are multi-user operating systems, ...

js memory leak scenarios, how to monitor and analyze them in detail

Table of contents Preface What situations can cau...

MySQL InnoDB row_id boundary overflow verification method steps

background I talked to my classmates about a boun...

JavaScript+html to implement front-end page sliding verification (2)

This article example shares the specific code of ...

Understanding and solutions of 1px line in mobile development

Reasons why the 1px line becomes thicker When wor...

CSS screen size adaptive implementation example

To achieve CSS screen size adaptation, we must fi...

Solution to the low writing efficiency of AIX mounted NFS

Services provided by NFS Mount: Enable the /usr/s...