欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

vue中用H5实现文件上传的方法实例代码

程序员文章站 2023-11-09 19:25:46
整理文档,搜刮出一个vue中用h5实现文件上传的方法实例代码,稍微整理精简一下做下分享。 1.图片上传

整理文档,搜刮出一个vue中用h5实现文件上传的方法实例代码,稍微整理精简一下做下分享。

1.图片上传

 <img v-if="personinfo.photourl" :src="headprefix + personinfo.photourl" style="height:126px;max-width:133px;margin: 25px 0;">
 <img v-else src="../../assets/default.png" style="height:126px;max-width:133px;margin: 25px 0;">
<form id="form1" enctype="multipart/form-data" method="post" action="">
        <div style="height:0px; overflow:hidden; position:absolute;">
         <input type="file" tabindex="-1" accept="image/jpeg,image/x-png,image/gif" name="file" style="padding-left:10px" id="filetoupload" @change="fileselected()"/>
        </div>
        <button type="button" class="btn btn-default btn-xs" onclick="document.getelementbyid('filetoupload').click()">上传</button>
        <button type="button" class="btn btn-default btn-xs" @click="deleteimg">删除</button>
       </form>
// 上传图片
  'fileselected': function () {
   var that = this
   let files = document.getelementbyid('filetoupload').files
   if (files && files.length) {
    var fd = new formdata()
    fd.append('file', files[0])
    var reader = new window.filereader()
    // 图片大小 100kb
    var filesize = 100 * 1024
    reader.readasdataurl(files[0])
    reader.onload = function (e) {
     if (e.target.result.length > filesize) {
      that.$dispatch('show-alert', 'msg_1016')
      document.getelementbyid('filetoupload').value = ''
     } else {
      var xhr = new xmlhttprequest()
      xhr.addeventlistener('load', that.uploadcomplete, false)
      xhr.open('post', that.$root.appbaseurl + 'fileupload/singlefileupload')
      xhr.send(fd)
     }
    }
   }
  },
  // 上传成功
  'uploadcomplete': function (evt) {
   this.personinfo.photourl = (evt.target.responsetext).replace('\\', '/')
   document.getelementbyid('filetoupload').value = ''
  },
  // 删除图片
  'deleteimg': function () {
   this.personinfo.photourl = ''
  },
computed: {
  headprefix: function () {
   let params = window.localdicts.dicts.ph_params.systemparam
   if (params.storagetype === 1) {
    return params.storageurl
   }
   return this.$root.appbaseurl
  }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。