https://docs.djangoproject.com/en/3.2/topics/files/
[Django] File upload (FileField, ImageField)
‣
[Django] File upload (FileField, ImageField)
Vue.js와 Vuetify 활용해서 axios로 파일 업로드하기
https://docs.djangoproject.com/en/3.2/ref/models/fields/#:~:text=e.g. cron).-,FilePathField,-%C2%B6
여기 참고 별표 - vuetify, django, vue 모두 사용
https://www.youtube.com/watch?v=qmnYPCm0dHU
vue.js - Vuetify v-file-input에 초기 파일 이름 값 제공
File {name: 'image.png', lastModified: 1634140335379, lastModifiedDate: Thu Oct 14 2021 00:52:15 GMT+0900 (한국 표준시), webkitRelativePath: '', size: 251980, …}
lastModified: 1634140335379
lastModifiedDate: Thu Oct 14 2021 00:52:15 GMT+0900 (한국 표준시)
[[Prototype]]: Object
name: "image.png"
size: 251980
type: "image/png"
webkitRelativePath: ""
[[Prototype]]: File
lastModified: (...)
lastModifiedDate: (...)
name: (...)
size: (...)
type: (...)
webkitRelativePath: (...)
constructor: ƒ File()
Symbol(Symbol.toStringTag): "File"
get lastModified: ƒ lastModified()
get lastModifiedDate: ƒ lastModifiedDate()
get name: ƒ name()
get webkitRelativePath: ƒ webkitRelativePath()
[[Prototype]]: Blob
https://itinerant.tistory.com/34
https://codepen.io/scottorgan/pen/LYYgYga
https://stackoverflow.com/questions/43589569/using-filereader-api-inside-a-vue-js-component-method
csv
[자바스크립트] CSV to JSON 변환 출력 방법+샘플예제코드(node.js 파일 처리 포함)