Vue+iView 엑셀 업로드 기능 의 전체 코드 구현
<Col span="2"> :</Col>
<Col span="22" class="uploadExcelBox">
<Upload ref="uploadExcel" :loading="uploadLoading" :action="uploadFileUrl" accept="xlsx,xls" :format="uploadFormat" :before-upload="beforeImgFile" :on-success="successImgFile" :on-error="errorImgFile" :show-upload-list="true">
<Button type="success"> </Button>
</Upload>
<div v-if="uploadingFile !== null"> :
<span class="blueFont">{{ fileName }}</span>
<Button @click="uploadFun(index)" :loading="loadingStatus" class="manualUploadBtn">{{ loadingStatus ? ' ...' : ' ' }}</Button>
</div>
</Col>
2.JS 부분
<script>
// import excel from '@/libs/excel'
import service from '@/libs/request' //
import reportFormApi from '@/api/reportForm'
export default {
data() {
return {
uploadLoading:false,// loading
uploadFileUrl: "",
uploadFormat:['xlsx','xls'],
uploadingFile:null,//
loadingStatus:false,//upload
fileName:"",//
}
},
mounted() {
this.uploadFileUrl = service.apiUrl + "/qingximaster/winInfo/execlAdd";// Excel , 。
},
methods: {
//
beforeImgFile(file) {
// console.log(file);
const fileExt = file.name.split('.').pop().toLocaleLowerCase()
if (fileExt === 'xlsx' || fileExt === 'xls') {
var formdata = new FormData();
formdata.append("file",file);
this.fileName = formdata.get('file').name;// formdata.get('file') , file , Excel 。
this.uploadingFile = formdata;// : 。 file formdata.get('file'), file。
} else {
this.$Notice.warning({
title: ' ',
desc: ' :' + file.name + ' EXCEL , .xlsx .xls EXCEL 。'
})
}
return false
},
//
successImgFile(response, file, fileList) {
this.$Notice.success({
title: ' ',
desc: ' !'
})
},
//
errorImgFile(error, file, fileList) {
this.$Notice.success({
title: ' ',
desc: ' !'
})
console.log(error);
},
uploadFun(index){// Excel
this.loadingStatus = true;
reportFormApi.uploadExcel({
url: this.uploadFileUrl,
file: this.uploadingFile
}).then(res =>{
this.uploadingFile = null;
this.fileName = "";
if(res.code==0){
this.infoList[index].content = JSON.stringify(res.data);
// console.log(this.infoList[index].content);
this.$Message.success(" !");
}else{
this.$Message.error(res.message);
}
}).finally(()=>{
this.loadingStatus = false;
this.uploadLoading = false;
})
},
}
}
3.페이지 효 과 는 다음 과 같다.(1)페이지 에 들 어가 서 기본 으로 보 여 주 는 모습
(2)올 릴 Excel 선택
(3)"클릭 하면 업로드 시작"이후
이상 은 Vue+iView 가 엑셀 업로드 에 대한 상세 한 내용 입 니 다.vue iview 엑셀 업로드 에 관 한 자 료 는 저희 의 다른 관련 글 을 주목 하 세 요!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Fastapi websocket 및 vue 3(Composition API)1부: FastAPI virtualenv 만들기(선택 사항) FastAPI 및 필요한 모든 것을 다음과 같이 설치하십시오. 생성main.py 파일 및 실행 - 브라우저에서 이 링크 열기http://127.0.0.1:...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.