Vuevue

element-ui upload

2018-08-06  本文已影响45人  啊啊啊阿南

element-ui upload文件上传的坑之一~~~就是情况稍微复杂一点的情况就得用手动上传(下一个按钮实现不了!!)

<template>
 <el-upload :action="string" :show-file-list="false" :http-request="httpRequest">
    <el-button size="mini" type="primary" >导入</el-button>
 </el-upload>
</template>
<script>
export default {
 methods: {   
  httpRequest(item){      
   console.log(item.file);      
   //...
  }     
 }
}
</script>

注意:before-upload返回false或者auto-upload为false的情况下是不会触发http-request事件的

<template>
 <el-upload action="string"  :multiple="true" :before-upload="beforeupload" :show-file-list="false">
    <el-button size="mini" type="primary"  @click="clearUpload">导入</el-button>
 </el-upload>
 <el-button size="mini" type="primary"  @click="submitUpload"  >手动上传</el-button>
</template>
<script>
export default {
 data(){
  return{
   uploadForm: new FormData(),
  }
 },
 methods: {  
  //获取文件
  beforeupload(file){
    this.uploadForm.append('file', file);
    return false;
  }, 
  clearUpload(){
    this.uploadForm = new FormData();
  },
  //手动上传
  submitUpload(){      
   let data = this.uploadForm;
   $.ajax({         
     url: '...',         
     type: "POST",
     data: data,
     processData: false,//必写
     contentType: false,//必写
     success:function(rs){
      if(rs.errorCode == '0')
       MessageBox({ title: '提示', message: '导入成功!', type: 'success' });
      else
       MessageBox({ title: '提示', message: '导入失败!', type: 'error' });
      }
    });
   }     
 }
}
</script>
<template>
 <el-button type="primary" size="mini"  @click.native="impClick">导入</el-button>
 <!-- change事件能获取文件,若点击取消不触发-->
<input multiple hidden accept=".xml" id="__input-file" type="file" @change="importData($event)">
</template>
<script>
export default {
 methods: {  
  //触发
  impClick(){
    $('#__input-file').click();
  },
  importData(e){      
    let files = e.target.files;
    let formData = new FormData();
    for (let file of files) {
     formData.append('files', file);
    }
    $.ajax({         
      url: '...',         
      type: "POST",
      data: data,
      processData: false,//必写
      contentType: false,//必写
      success:function(rs){
       if(rs.errorCode == '0')
        MessageBox({ title: '提示', message: '导入成功!', type: 'success' });
       else
        MessageBox({ title: '提示', message: '导入失败!', type: 'error' });
       }
     });
    }     
  }
 }
</script>

<!-- impData是个对象 -->
 <el-upload :action="importUrl" :on-success="importSuccess" 
:on-error="importError" :show-file-list="false"   :data="impData" :multiple="false">
  <el-button size="mini" type="primary" >导入</el-button>
</el-upload>

2)、将参数放在actoin 的路径中

3)、FormData.append();

上一篇 下一篇

猜你喜欢

热点阅读