vue el-upload 文件上传

翟理
2023-12-01

el-upload 用到的一些参数

参数说明类型可选值默认值
action必选参数,上传的地址string
headers设置上传的请求头部object
multiple是否支持多选文件boolean
data上传时附带的额外参数object
name上传的文件字段名stringfile
with-credentials支持发送 cookie 凭证信息booleanfalse
show-file-list是否显示已上传文件列表booleantrue
drag是否启用拖拽上传booleanfalse
accept接受上传的文件类型(thumbnail-mode 模式下此参数无效)string
on-preview点击文件列表中已上传的文件时的钩子function(file)
on-remove文件列表移除文件时的钩子function(file, fileList)
on-success文件上传成功时的钩子function(response, file, fileList)
on-error文件上传失败时的钩子function(err, file, fileList)
on-progress文件上传时的钩子function(event, file, fileList)
on-change文件状态改变时的钩子,添加文件、上传成功和上传失败时都会被调用function(file, fileList)
before-upload上传文件之前的钩子,参数为上传的文件,若返回 false 或者返回 Promise 且被 reject,则停止上传。function(file)
before-remove删除文件之前的钩子,参数为上传的文件和文件列表,若返回 false 或者返回 Promise 且被 reject,则停止删除。function(file, fileList)
list-type文件列表的类型stringtext/picture/picture-cardtext
auto-upload是否在选取文件后立即进行上传booleantrue
file-list上传的文件列表, 例如: [{name: 'food.jpg', url: 'https://xxx.cdn.com/xxx.jpg'}]array[]
http-request覆盖默认的上传行为,可以自定义上传的实现function
disabled是否禁用booleanfalse
limit最大允许上传个数number
on-exceed文件超出个数限制时的钩子function(files, fileList)

-

 

例子
<template>
  <div class="hello">
    <el-upload action="http://127.0.0.1:8702/Hello/upload"
               :on-change="upload"
               :limit="1"
               :auto-upload="false">
      <div>文件上传</div>
    </el-upload>
  </div>

</template>
<script type="text/javascript">
  import $ from 'jquery'

  export default ({
    data () {
      return {
        mgs: ''
      }
    },
    methods: {
      getTest1 () {
        console.info('1212')
        this.$emit('refresh')
      },
      upload (file) {
        debugger
        console.info(file)
        let form = new FormData()
        form.append('file', file.raw)
        let reader = new FileReader()
        reader.onload = function () {
          $.ajax({
            url: 'http://127.0.0.1:8702/Hello/upload',
            type: 'post',
            data: form,
            processData: false, // 很重要,告诉jquery不要对form进行处理
            contentType: false, // 很重要,指定为false才能形成正确的Content-Type
            success: function () {
              console.info('上传成功')
            }
          })
        }
        reader.readAsBinaryString(file.raw)
      }
    }
  })

</script>
 类似资料: