Node.js - 将 xlsx 保存到磁盘

3
我正在使用Node.js和js-xlsx生成新的Excel文件。 当生成新文件时,我希望将其保存到本地磁盘。
这段代码用于生成和下载新的Excel文件,如何将其存储到磁盘上?
FileManagement.generateExcelFile("xlsx-filtered-list", "error-sheet", finalResult, res);

generateExcelFile(fileName, sheetName, data, res) {
    const workSheet = sheet_from_array_of_arrays(data);
    const workBook = new Workbook();

    workBook.SheetNames.push(sheetName);
    workBook.Sheets[sheetName] = workSheet;

    const workBookOptions = { bookType:'xlsx', bookSST:false, type:'binary' };
    const workBookFile = xlsx.write(workBook, workBookOptions);

    res.setHeader('Content-Type', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
    res.setHeader('Content-Disposition', 'attachment; filename='+fileName);
    res.end(workBookFile, 'binary');

    // Functions work Excel generation (don't touch)
    function Workbook() {
        if(!(this instanceof Workbook)) return new Workbook();
        this.SheetNames = [];
        this.Sheets = {};
    }

    function sheet_from_array_of_arrays(data) {
        const workSheet = {};
        const range = {s: {c:10000000, r:10000000}, e: {c:0, r:0 }};
        for(let R = 0; R != data.length; ++R) {
            for(let C = 0; C != data[R].length; ++C) {
                if(range.s.r > R) range.s.r = R;
                if(range.s.c > C) range.s.c = C;
                if(range.e.r < R) range.e.r = R;
                if(range.e.c < C) range.e.c = C;
                const cell = {v: data[R][C] };
                if(cell.v == null) continue;
                const cell_ref = xlsx.utils.encode_cell({c:C,r:R});

                if(typeof cell.v === 'number') cell.t = 'n';
                else if(typeof cell.v === 'boolean') cell.t = 'b';
                else if(cell.v instanceof Date) {
                    cell.t = 'n'; cell.z = xlsx.SSF._table[14];
                    cell.v = datenum(cell.v);
                }
                else cell.t = 's';

                workSheet[cell_ref] = cell;
            }
        }
        if(range.s.c < 10000000) workSheet['!ref'] = xlsx.utils.encode_range(range);

        return workSheet;
    }
}

const fs = require('fs'); fs.writeFileSync('./public/uploaded-files/hello.xlsx', FileManagement.generateExcelFile("error-list.xlsx", "error-sheet", filteredData[1], res));该代码将文件写入磁盘,但由于文件格式扩展名错误,无法使用。 - Nenson
2个回答

7
这里是解决方案:
/* output format determined by filename */
XLSX.writeFile(workbook, 'out.xlsx');
/* at this point, out.xlsx is a file that you can distribute */

1
您也可以使用以下方法:

var FileSaver = require('file-saver')

/* add worksheet to workbook */
wb.SheetNames[0] = 'Testing';
wb.Sheets['Testing'] = ws;  //worksheet handle

var wopts = { bookType:'xlsx', bookSST:false, type:'binary'};
var wbout = XLSX.write(wb,wopts);

/* the saveAs call downloads a file on the local machine */
FileSaver.saveAs(new Blob([s2ab(wbout)],{type: ""}), "test.xlsx")

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接