当前位置:   article > 正文

ElementUi 关于 el-upload的自定义上传(http-request)的使用_el-upload 自定义上传

el-upload 自定义上传

  

在开发中 遇到如下需求,要求前端传参并导入excel表格。导入失败,要弹出错误信息,同时导出错误信息的excel表格,导入成功提示信息即可。

1.原生方式导入文件

参考官方文档,把上传需要的属性加加入使用

  改造之前:

设置headers信息

2.自定义导入文件

在el-upload标签中加入http-request ,如下:

:http-request="importSonCodeRequest" //方法名

具体操作方法如下:

  1. importSonCodeRequest(option){//option 这个参数会拿取到我们el_upload标签里我们配置信息
  2. if (this.classId=='' ){
  3. this.$message.warning("请选择归属模块!")
  4. return
  5. }
  6. if (this.codeId=='' ){
  7. this.$message.warning("请选择子码!")
  8. return
  9. }
  10. var data = new FormData()//自定义 参数类型必须为 FormData格式 此为强制要求
  11. data.append("file",option.file)
  12. data.append("classId",this.classId)
  13. data.append("codeId",this.codeId)
  14. this.importCommit(data,option,'son')
  15. },
  1. //导入方法提交
  2. //data :为上传文件的参数, type :因为我有两个导入,我用类型来判断是哪个导入方法不需要去掉即可
  3. importCommit(data,option,type){
  4. axios({
  5. url: `${option.action}`,//取自el-upload标签的action中配置,或者也可以在这里直接写url
  6. method:"post",
  7. data:data,
  8. processData:false,
  9. contentType:false,
  10. headers: option.headers,//同理
  11. responseType: "blob",
  12. dataType: 'json',
  13. }).then(res => {
  14. if (res.data.size==0){
  15. this.$message.success("导入成功!")
  16. if (type=='son'){
  17. //刷新页面操作
  18. }else{
  19. //刷新页面操作
  20. }
  21. }else{
  22. this.errInfoExport(res)
  23. }
  24. this.$refs.importUpload.clearFiles()//清除上传成功的文件,非常重要,原因我下文写出来
  25. }).catch(err=>{
  26. //解析错误信息
  27. const fileReader = new FileReader()
  28. const errInfo =err.response.data
  29. fileReader.readAsText(err.response.data)
  30. fileReader.onloadend = () => {
  31. if (errInfo.type.indexOf("application/json") >-1) { // 说明是普通对象数据,包含错误提示信息
  32. const jsonData = JSON.parse(fileReader.result)
  33. // 后台错误信息
  34. this.$confirm(jsonData.message, "提示", {
  35. showCancelButton: false, //是否显示取消按钮
  36. type: "warning",
  37. }).then(() => {
  38. })
  39. }else{
  40. this.$message.error("导入失败!")
  41. }
  42. this.addListLoad = false;
  43. this.loading=false
  44. this.$refs.importUpload.clearFiles()
  45. }
  46. });
  47. },
  1. //错误信息导出方法封装
  2. errInfoExport(res){
  3. this.$message.error("导入失败!")
  4. this.addListLoad = false;
  5. const filename = decodeURIComponent("错误信息导出");//在这个定义导出文件的文件名
  6. const blob = new Blob([res.data], {type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'});
  7. if (window.navigator.msSaveBlob) {
  8. navigator.msSaveBlob(blob, filename);
  9. } else {
  10. const elink = document.createElement("a");
  11. elink.style.display = "none";
  12. elink.href = URL.createObjectURL(blob);
  13. document.body.appendChild(elink);
  14. elink.setAttribute("download", filename);
  15. document.body.appendChild(elink);
  16. elink.click();
  17. document.body.removeChild(elink);
  18. window.URL.revokeObjectURL(elink.href); // 释放URL 对象
  19. }
  20. },

 注意: 这里的Type是根据我们后端代码ExcelUtil工具类中的配置的,无论您的配置是啥,前后端必须要一致,否则导出的Excel文档将会是乱码!!

application/vnd.openxmlformats-officedocument.spreadsheetml.sheet

此外 :

  1. //这行代码是是必须要使用的
  2. this.$refs.importUpload.clearFiles()
  3. //用于清空上传组件中已选择的文件列表。将清空el-upload组件中已选择的文件列表。这个方法通常用于在用户选择了错误的文件或者需要重新选择文件时,清空已选择的文件列表

   这样el-upload的自定义上传文件的简单使用就完成了。当然如果只是单纯的上传文件没有其他额外的需求我还是推荐原生方式。

        感谢您看到这里,您的阅读就是我继续写作的动力!!能帮到您是我的荣幸,愿我们一同进步,加油!                                                                                                     

                                                                                                                       

  

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/906125
推荐阅读
相关标签
  

闽ICP备14008679号