转 vue批量上传图片

HTML代码: 

 <div id="app">
    <div class="hello">
      <div class="upload">
        <div class="upload_warp_left" @click="fileClick">
          <button class="btn btn-success">上传图片</button>
        </div>
        <div class="upload_warp_text">
          选中{{imgList.length}}张文件,共{{bytesToSize(this.size)}}; 最多上传<span class="text-primary"> 6</span> 张图片!
        </div>
        <div class="upload_warp" style="border: 1px solid white;">
          <div class="upload_warp_img" v-show="imgList.length!=0">
            <div class="upload_warp_img_div" v-for="(item,index) of imgList">
              <div class="upload_warp_img_div_top">
                <div class="upload_warp_img_div_text">
                  {{item.file.name}}
                </div>
                <img src="./del.png" class="upload_warp_img_div_del" @click="fileDel(index)">
              </div>
              <img :src="item.file.src">
            </div>
          </div>
        </div>


        <input @change="fileChange($event)" type="file" id="upload_file" multiple style="display: none"/>

      </div>
    </div>
  </div>

CSS 代码:


  .upload_warp_img_div_del {
    position: absolute;
    top: 6px;
    width: 16px;
    right: 4px;
  }

  .upload_warp_img_div_top {
    position: absolute;
    top: 0;
    width: 100%;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.4);
    line-height: 30px;
    text-align: left;
    color: #fff;
    font-size: 12px;
    text-indent: 4px;
  }

  .upload_warp_img_div_text {
    white-space: nowrap;
    width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .upload_warp_img_div img {
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
  }

  .upload_warp_img_div {
    position: relative;
    height: 100px;
    width: 120px;
    border: 1px solid #ccc;
    margin: 0px 5px 5px 0px;
    float: left;
    line-height: 100px;
    display: table-cell;
    text-align: center;
    background-color: #eee;
    cursor: pointer;
  }

  .upload_warp_img {
    border-top: 1px solid #D2D2D2;
    padding: 5px 0 0 5px;
    overflow: hidden
  }

  .upload_warp_text {
    text-align: left;
    margin-bottom: 5px;
    padding-top: 5px;
    text-indent: 14px;
    border-top: 1px solid #ccc;
    font-size: 14px;
  }

  .upload_warp_right {
    float: left;
    width: 57%;
    margin-left: 2%;
    height: 100%;
    border: 1px dashed #999;
    border-radius: 4px;
    line-height: 130px;
    color: #999;
  }

  .upload_warp_left button {

    margin: 8px 5px 0px 5px;
    cursor: pointer;

  }

  .upload_warp_left {
    float: left;

  }

  .upload_warp {
    margin: 5px;

  }

  .upload {
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    background-color: #fff;
    width: 770px;
    box-shadow: 0px 1px 0px #ccc;
    border-radius: 4px;
  }

  .hello {
    width: 770px;
    text-align: center;
  }

 JS 代码:

var app = new Vue({
        el: '#app',
        data () {
            return {
                imgList: [],
                size: 0
            }
        },
        methods: {
            fileClick(){
                document.getElementById('upload_file').click()
            },
            fileChange(el){
                if (!el.target.files[0].size) return;
                this.fileList(el.target.files);
                el.target.value = ''
            },
            fileList(files){
                for (let i = 0; i < files.length; i++) {
                    this.fileAdd(files[i]);
                }
            },
            fileAdd(file){
                this.size = this.size + file.size;//总大小
                let reader = new FileReader();
                reader.vue = this;
                reader.readAsDataURL(file);
                reader.onload = function () {
                    file.src = this.result;
                    this.vue.imgList.push({
                        file
                    });
                }
            },
            fileDel(index){
                this.size = this.size - this.imgList[index].file.size;//总大小
                this.imgList.splice(index, 1);
            },
            bytesToSize(bytes){
                if (bytes === 0) return '0 B';
                let k = 1000, // or 1024
                    sizes = ['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'],
                    i = Math.floor(Math.log(bytes) / Math.log(k));
                return (bytes / Math.pow(k, i)).toPrecision(3) + ' ' + sizes[i];
            },
            dragenter(el){
                el.stopPropagation();
                el.preventDefault();
            },
            dragover(el){
                el.stopPropagation();
                el.preventDefault();
            },
            drop(el){
                el.stopPropagation();
                el.preventDefault();
                this.fileList(el.dataTransfer.files);
            }
        }
    })

最多上传6张是我的项目需要加上去的,实际并没有限制,可以无限上传,需要VUE2.2 以上版本支持

  原文允许转载或者本次转载已经获得原文作者授权

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
对于Vue富文本编辑器,你可以使用一些第三方库来实现批量上传图片的功能。以下是一个示例,使用了vue-quill-editor和vue-filepond来实现: 1. 首先,安装所需的库: ```bash npm install vue-quill-editor vue-filepond filepond filepond-plugin-file-validate-type ``` 2. 在你的Vue组件中引入所需的库: ```javascript import VueQuillEditor from 'vue-quill-editor' import 'quill/dist/quill.core.css' import 'quill/dist/quill.snow.css' import 'quill/dist/quill.bubble.css' import VueFilePond from 'vue-filepond' import 'filepond/dist/filepond.min.css' import FilePondPluginFileValidateType from 'filepond-plugin-file-validate-type' Vue.use(VueQuillEditor) Vue.use(VueFilePond, { plugins: [FilePondPluginFileValidateType] }) ``` 3. 在模板中使用VueQuillEditor组件,并添加上传图片的功能: ```html <template> <div> <vue-quill-editor v-model="content" :options="editorOptions"></vue-quill-editor> <vue-file-pond v-model="files" :allow-multiple="true" :server="uploadUrl"></vue-file-pond> <button @click="uploadImages">上传图片</button> </div> </template> ``` 4. 在Vue组件的data中定义相关的变量和上传图片的方法: ```javascript data() { return { content: '', files: [], editorOptions: { // 配置富文本编辑器的其他选项 }, uploadUrl: '/api/upload' // 设置图片上传的后端接口地址 } }, methods: { uploadImages() { const formData = new FormData() this.files.forEach(file => { formData.append('images', file.file) }) // 发送图片上传请求 axios.post('/api/upload', formData, { headers: { 'Content-Type': 'multipart/form-data' } }).then(response => { // 在这里处理图片上传成功后的逻辑 }).catch(error => { // 在这里处理图片上传失败后的逻辑 }) } } ``` 请注意,以上代码只是一个示例,你需要根据你的实际需求进行适当的修改和调整。另外,你还需要在后端实现相应的图片上传接口。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值