使用element-ui中的el-upload组件时携带其他参数

<el-upload
        class="upload-demo"
        ref="upload"  
        :action="uploadURL+'/customer/excel'"   //后台接口(接受上传的文件并做后端的逻辑处理)
        :headers="headers"
        accept=".xlsx,.xls"  // 限制文件格式
        :on-preview="handlePreview"
        :on-remove="handleRemove"
        :on-success="handleSuccess" //上传文件成功时的回调函数
        :file-list="fileList"
        :limit="1"  // 限制文件个数
        :data="uploadData"   //上传文件时要上传的额外参数
        :on-exceed="handleExceed"
        :auto-upload="false">  //停止文件自动上传模式
        <el-button slot="trigger" size="small" type="primary">选取文件el-button>
 el-upload>

 data中

export default {
 data() {
    uploadData:{name: this.$parent.name}  
    // name为java后台需要接收的数据,
this.$parent.name则是获取父组件的name
  } 
}

 

你可能感兴趣的:(使用element-ui中的el-upload组件时携带其他参数)