forked from seungwongo/node-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxlsx_download.js
41 lines (32 loc) · 1.61 KB
/
xlsx_download.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
const express = require("express");
require('dotenv').config({ path: 'mysql/.env' }); // mysql 폴더에 있는 .env 파일을 찾아서 환경변수를 설정
const mysql = require("./mysql"); // mysql 폴더의 index.js
const xlsx = require('xlsx');
const app = express();
app.use(express.json({
limit: '50mb' // 최대 50메가
})); // 클라이언트 요청 body를 json으로 파싱 처리
app.listen(3000, () => {
// 3000번 포트로 웹 서버 실행
console.log('Server started. port 3000.');
});
// 고객 정보 엑셀 파일 다운로드
app.get('/download/customers', async (req, res) => {
const workbook = xlsx.utils.book_new(); // 가상의 엑셀 파일 생성
const customers = await mysql.query('customerList'); //sql.js 파일에 작성된 customerList 쿼리를 실행
// json_to_sheet 방식으로 데이터 생성"
const firstSheet = xlsx.utils.json_to_sheet( customers, { header : ["id", "name", "email", "phone", "address"] } );
// 컬럼(열) 넓이 지정
firstSheet["!cols"] = [
{ wpx : 50 }, // id열
{ wpx : 200 }, // name열
{ wpx : 200 }, // email열
{ wpx : 140 }, // phone열
{ wpx : 200 }, // address열
];
// 첫번째 시트에 작성한 데이터를 넣는다.
xlsx.utils.book_append_sheet( workbook, firstSheet, "Customers" );
res.setHeader('Content-disposition', 'attachment; filename=Customer.xlsx'); // 다운로드 파일명 설정
res.setHeader('Content-type', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'); // 엑셀파일 mimetype 설정
res.end( Buffer.from(xlsx.write(workbook, {type:'base64'}), 'base64') );
});