Detailed explanation of the use of js-xlsx tool library xlsxUtils
This time I will bring you a detailed explanation of the use of the js-xlsx tool library xlsxUtils. What are the precautions for using the js-xlsx tool library xlsxUtils. The following is a practical case. Let’s take a look. take a look.
Function description:
var xlsxUtils = { Binary: { fixdata(data) { //文件流转BinaryString //...... }, s2ab(s) { //字符串转字符流 //...... } }, _wb: null,//缓存导入时的Workbook _rABS: false,//设置读取方式 /** * @desc 导入根据文件 * @param {File} f 文件 * @param {Function} c 回调 * @return {Object} 回调值 */ import(f, c) { //...... }, /** * @desc 根据表Sheet名获取数据 * @param {String} name * @return {Object} */ getSheetByName(name) {// //...... }, /** * @desc 根据表Sheet索引获取数据 * @param {Number} index * @return {Object} */ getSheetByIndex(index = 0) { //...... }, /** * @desc 导出 * @param {Array} data 数据{title1:dataList,title2:dataList....} * @param {String} type * @return {Blob} */ export(data, type) { //...... }, /** * 从数据数组或对象中根据key生成相同key值的对象 * @param {Object|Array} data * @return {Object} */ readDataHead(data) { //...... }, /** * @desc 格式化数据为Sheet格式 * @param {Array} json 数据 */ format2Sheet(json, n) { //...... }, /** * @desc 格式化数据为Sheet格式 * @param {Array} sheetData * @param {String} title * @param {Object} wb */ format2WB(sheetData, title = "mySheet", wb) { //...... }, /** * @desc 将xlsx Workbook 转为blob * @param {Array} wb * @param {String} type 类型 */ format2Blob(wb, type) { //...... }, /** * @desc 匹配单元格对应的标识 * @param {Number} n */ getCharCol(n) { //...... }, };
Example:
Import example (online example):
<!DOCTYPE html><html><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <script src="http://oss.sheetjs.com/js-xlsx/xlsx.core.min.js"></script> <script src="./xlsx.utils.js"></script></head><body> <input type="file" id="demo" /> <div id="loadInfo"></div> <div> <div> <label>SheetNames</label>: <span id="SheetNames"></span> </div> <div> <label id="demoName"></label>(示例): <span id="demoData"></span> </div> </div> <script> var demo = document.getElementById("demo"); demo.onchange = function () { let f = this.files[0]; let loadInfo = document.getElementById("loadInfo"); let demoName = document.getElementById("demoName"); let demoData = document.getElementById("demoData"); loadInfo.innerHTML = "正在读取请骚等"; demoName.innerHTML = ""; demoData.innerHTML = ""; xlsxUtils.import(f, (w) => { document.getElementById("SheetNames").innerHTML = JSON.stringify(w.SheetNames); demoName.innerHTML = w.SheetNames[0]; demoData.innerHTML = JSON.stringify(xlsxUtils.getSheetByIndex(0)); loadInfo.innerHTML = "读取完成"; }); }; </script></body></html>
Export example (online example)
<!DOCTYPE html><html><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>demo</title> <script src="http://oss.sheetjs.com/js-xlsx/xlsx.core.min.js"></script> <script src="xlsx.utils.min.js"></script> <script src="saveAs.min.js"> </script></head><body> <script> var data = [{ 主页: "111", 名称: "6800", 数量: "6800", 昵称: "广告主网" }, { 主页: "433", 名称: "6800", 数量: "6800", 昵称: "广告主网" }, { 名称: "22", 商家: "6800", 数量: "6800", 昵称: "广告主网", }, { 名称: "43", 商家: "6800", 数量: "6800", 昵称: "广告主网", }, { 店家: "43", 价格: "6800", 数量: "6800", 昵称: "广告主网", }]; </script> <button id="down">导出</button> <script> var down = document.getElementById("down"); down.onclick = function () { data.unshift(xlsxUtils.readDataHead(data)); var blob = xlsxUtils.export({ "Sheet1": data, "Sheet2": [{ "a": "A", "b": "B" }, { "a": 1, "b": "2" }, { "a": 3, "b": 4 }, { "a": 5, "b": 6 }] }); saveAs(URL.createObjectURL(blob), "aa.xlsx"); }; </script></body></html>
Customized starting column export example (online example)
<!DOCTYPE html><html><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>demo</title> <script src="http://oss.sheetjs.com/js-xlsx/xlsx.core.min.js"></script> <script src="xlsx.utils.min.js"></script> <script src="saveAs.min.js"> </script></head><body> <script> var data = [{ 主页: "111", 名称: "6800", 数量: "6800", 昵称: "广告主网" }, { 主页: "433", 名称: "6800", 数量: "6800", 昵称: "广告主网" }, { 名称: "22", 商家: "6800", 数量: "6800", 昵称: "广告主网", }, { 名称: "43", 商家: "6800", 数量: "6800", 昵称: "广告主网", }, { 店家: "43", 价格: "6800", 数量: "6800", 昵称: "广告主网", }]; </script> <button id="down">导出</button> <script> var down = document.getElementById("down"); down.onclick = function () { data.unshift(xlsxUtils.readDataHead(data)); var tmpdata = xlsxUtils.format2Sheet(data, 2); var tmpWB = xlsxUtils.format2WB(tmpdata, "Sheet1"); tmpdata = xlsxUtils.format2Sheet([{ "a": "A", "b": "B" }, { "a": 1, "b": "2" }, { "a": 3, "b": 4 }, { "a": 5, "b": 6 }], 4); tmpWB = xlsxUtils.format2WB(tmpdata, "Sheet2", tmpWB); var blob = xlsxUtils.format2Blob(tmpWB); saveAs(URL.createObjectURL(blob), "aa.xlsx"); }; </script></body></html>
Multiple data merge and export to single table example (online example)
<!DOCTYPE html><html><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>demo</title> <script src="http://oss.sheetjs.com/js-xlsx/xlsx.core.min.js"></script> <script src="xlsx.utils.min.js"></script> <script src="saveAs.min.js"> </script></head><body> <script> var data = [{ 主页: "111", 名称: "6800", 数量: "6800", 昵称: "广告主网" }, { 主页: "433", 名称: "6800", 数量: "6800", 昵称: "广告主网" }, { 名称: "22", 商家: "6800", 数量: "6800", 昵称: "广告主网", }, { 名称: "43", 商家: "6800", 数量: "6800", 昵称: "广告主网", }, { 店家: "43", 价格: "6800", 数量: "6800", 昵称: "广告主网", }]; </script> <button id="down">导出</button> <script> var down = document.getElementById("down"); down.onclick = function () { var d1 = xlsxUtils.format2Sheet([{ "a": "A", "b": "B" }, { "a": 1, "b": "2" }, { "a": 3, "b": 4 }, { "a": 5, "b": 6 }]); var h=xlsxUtils.readDataHead(data);//读取data的列头数据 data.unshift(h);//将列头追加到最data的前 var em={};//用于换行 Object.keys(h).forEach((v)=>{ em[v]=""; }); for(var i=0;i<5;i++){//换5行 data.unshift(em); } var d2 = xlsxUtils.format2Sheet(data, 3);//3代表从D列开始 d1=Object.assign(d1,d2); var tmpWB = xlsxUtils.format2WB(d1, "Sheet1"); var blob = xlsxUtils.format2Blob(tmpWB); saveAs(URL.createObjectURL(blob), "aa.xlsx"); }; </script></body></html>
I believe you have mastered the method after reading the case in this article, and more How exciting, please pay attention to other related articles on php Chinese website!
Related reading:
How to use canvas to make a useful graffiti drawing board
How to use s-xlsx to import Excel files and Export (below)
The above is the detailed content of Detailed explanation of the use of js-xlsx tool library xlsxUtils. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

How to use WebSocket and JavaScript to implement an online speech recognition system Introduction: With the continuous development of technology, speech recognition technology has become an important part of the field of artificial intelligence. The online speech recognition system based on WebSocket and JavaScript has the characteristics of low latency, real-time and cross-platform, and has become a widely used solution. This article will introduce how to use WebSocket and JavaScript to implement an online speech recognition system.

WebSocket and JavaScript: Key technologies for realizing real-time monitoring systems Introduction: With the rapid development of Internet technology, real-time monitoring systems have been widely used in various fields. One of the key technologies to achieve real-time monitoring is the combination of WebSocket and JavaScript. This article will introduce the application of WebSocket and JavaScript in real-time monitoring systems, give code examples, and explain their implementation principles in detail. 1. WebSocket technology

How to use WebSocket and JavaScript to implement an online reservation system. In today's digital era, more and more businesses and services need to provide online reservation functions. It is crucial to implement an efficient and real-time online reservation system. This article will introduce how to use WebSocket and JavaScript to implement an online reservation system, and provide specific code examples. 1. What is WebSocket? WebSocket is a full-duplex method on a single TCP connection.

Introduction to how to use JavaScript and WebSocket to implement a real-time online ordering system: With the popularity of the Internet and the advancement of technology, more and more restaurants have begun to provide online ordering services. In order to implement a real-time online ordering system, we can use JavaScript and WebSocket technology. WebSocket is a full-duplex communication protocol based on the TCP protocol, which can realize real-time two-way communication between the client and the server. In the real-time online ordering system, when the user selects dishes and places an order

JavaScript and WebSocket: Building an efficient real-time weather forecast system Introduction: Today, the accuracy of weather forecasts is of great significance to daily life and decision-making. As technology develops, we can provide more accurate and reliable weather forecasts by obtaining weather data in real time. In this article, we will learn how to use JavaScript and WebSocket technology to build an efficient real-time weather forecast system. This article will demonstrate the implementation process through specific code examples. We

JavaScript tutorial: How to get HTTP status code, specific code examples are required. Preface: In web development, data interaction with the server is often involved. When communicating with the server, we often need to obtain the returned HTTP status code to determine whether the operation is successful, and perform corresponding processing based on different status codes. This article will teach you how to use JavaScript to obtain HTTP status codes and provide some practical code examples. Using XMLHttpRequest

Usage: In JavaScript, the insertBefore() method is used to insert a new node in the DOM tree. This method requires two parameters: the new node to be inserted and the reference node (that is, the node where the new node will be inserted).

Introduction to the method of obtaining HTTP status code in JavaScript: In front-end development, we often need to deal with the interaction with the back-end interface, and HTTP status code is a very important part of it. Understanding and obtaining HTTP status codes helps us better handle the data returned by the interface. This article will introduce how to use JavaScript to obtain HTTP status codes and provide specific code examples. 1. What is HTTP status code? HTTP status code means that when the browser initiates a request to the server, the service
