Dropzone js - 拖动n从同一页面拖放文件 [英] Dropzone js - Drag n Drop file from same page

查看:98
本文介绍了Dropzone js - 拖动n从同一页面拖放文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在为多个文件使用 Dropzone 插件来拖放功能。当我从笔记本电脑/桌面上传图片时,拖动n drop可以正常工作。

I am using Dropzone plugin for multiple files drag n drop functionality. Drag n drop works fine when I am uploading pictures from my laptop / desktop.

我的问题是 - 如何从同一页面拖放n个图像到dropzone。让我说我有一个dropzone div,我有另一个div有多个图像。我想拖动n将这些图像拖放到dropzone。

My question is - how can I drag n drop images into dropzone from same page. Lets say I have a dropzone div and I am having another div having multiple images. I want to drag n drop those images into dropzone.

推荐答案

this.on("drop", function(event) {
  var imageUrl = event.dataTransfer.getData('URL');
  var fileName = imageUrl.split('/').pop();

  // set the effectAllowed for the drag item
  event.dataTransfer.effectAllowed = 'copy';

  function getDataUri(url, callback) {
    var image = new Image();

    image.onload = function() {
      var canvas = document.createElement('canvas');
      canvas.width = this.naturalWidth; // or 'width' if you want a special/scaled size
      canvas.height = this.naturalHeight; // or 'height' if you want a special/scaled size

      canvas.getContext('2d').drawImage(this, 0, 0);

      // Get raw image data
      // callback(canvas.toDataURL('image/png').replace(/^data:image\/(png|jpg);base64,/, ''));

      // ... or get as Data URI
      callback(canvas.toDataURL('image/jpeg'));
    };

    image.setAttribute('crossOrigin', 'anonymous');
    image.src = url;
  }

  function dataURItoBlob(dataURI) {
    var byteString,
        mimestring

    if (dataURI.split(',')[0].indexOf('base64') !== -1) {
      byteString = atob(dataURI.split(',')[1])
    } else {
      byteString = decodeURI(dataURI.split(',')[1])
    }

    mimestring = dataURI.split(',')[0].split(':')[1].split(';')[0]

    var content = new Array();
    for (var i = 0; i < byteString.length; i++) {
      content[i] = byteString.charCodeAt(i)
    }

    return new Blob([new Uint8Array(content)], {
      type: mimestring
    });
  }

  getDataUri(imageUrl, function(dataUri) {
    var blob = dataURItoBlob(dataUri);
    blob.name = fileName;
    myDropzone.addFile(blob);
  });
});

http://codepen.io/BartSitek/pen/ZeMGjV

这是我解决问题的方法。在互联网上发现了数据转换功能。这里有一些关于真正发生的事情的解释:

Here’s my solution to the problem. Data conversion functions were found on the internet. 
And here’s a little explanation of what’s really happening:


  • 在drop事件中抓取您拖动的图像的URL

  • 将该URL转换为数据URI格式

  • 将数据URI转换为Blob

  • 将Blob添加到Dropzone表单

  • During "drop" event grab the URL of the image you are dragging

  • Convert that URL to Data URI format

  • Convert Data URI to Blob
  • Add Blob to Dropzone form

这篇关于Dropzone js - 拖动n从同一页面拖放文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆