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

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