VUE2.0 element upload使用

<template>
  <div class="uptemp">
    <el-upload
      class="upload-demo"
      ref="upload"
      multiple="false"
      action="/web/api/uploadFile"
      :on-preview="handlePreview"
      :on-remove="handleRemove"
      :on-change="handleChange"
      :before-upload="beforeUpload"
      :file-list="fileList"
      :auto-upload="false"
      :multiple="false">
      <el-button slot="trigger" size="small" type="primary">选取文件</el-button>
      <el-button style="margin-left: 10px;" size="small" type="success" @click="submitUpload">导入</el-button>
      <div slot="tip" class="el-upload__tip">只能上传jpg/png文件</div>
    </el-upload>
  </div>

</template>
<script>
  export default {
    data() {
      return {
        fileList: []
      }
    },
    mounted: function () {
      //加载完页面执行的函数
    },
    methods: {
      submitUpload() {
        this.$refs.upload.submit();
      },
      handleRemove(file, fileList) {
        console.log(file, fileList);
      },
      handlePreview(file) {
        console.log(file);
      },
      handleChange(file, fileList){
        console.log(file);
        console.log(fileList);
      },
      beforeUpload: function (file) {
        console.log(file)
        //这里是重点,将文件转化为formdata数据上传
        let fd = new FormData()
        fd.append('file', file)
        this.$http.post('/web/api/uploadFile', fd).then((res) => {
          console.log(res)
        }, (res) => {
          console.log(res)
        });
        return false;
      }
    },
    components: {
//            组件
    }
  }
</script>
<style scoped>

</style>
<style>
  .uptemp .el-upload-list {
    position: absolute;
    left: 140px;
    top: 0;
    width: 50%;
  }

  .uptemp {
    position: relative;
  }

  .uptemp .el-upload-list .el-upload-list__item {
    margin-top: 0;
  }
</style>
  • 0
    点赞
  • 6
    收藏
    觉得还不错? 一键收藏
  • 4
    评论
评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值