반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- sequelize
- 동일 프로그램
- bucket cors
- Android
- error
- Electron
- naver storage
- onsenui
- bucket max-key
- Vue
- onsen-ui
- nodejs
- f035d
- CSS
- JavaScript
- MySQL
- vuejs
- c#
- electron-nuxt
- naver storage bucket error
- 프로세스 방지
- v-text-field height
- 동일 프로세스
- xlsx
- sort
- NUXT
- v-select
- kotlin
- vuetifyjs
- Vuetify
Archives
- Today
- Total
목록import (1)
앙큼한 개발기록

nuxt 를 통해서 엑셀 파일을 읽는 방법에 대해서 알아보자. 우선 html file의 onChange 이벤트로 파일 데이터를 가져온다. ... data() { return { fileReader: null, sheetNameList: [], excelDataList: [] } }, ... readExcelFile(event) { let input = event.target let file = input.files[0] let fileName = file.name let extension = fileName.split('.')[1] let includeExtension = ['xlsx', 'csv', 'xls'] if (!includeExtension.includes(extension)) { alert(..
카테고리 없음
2023. 2. 9. 23:27