Skip to content

Instantly share code, notes, and snippets.

@hanxi
Created July 26, 2019 10:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hanxi/29545b18fad315133623b47342d0f4eb to your computer and use it in GitHub Desktop.
Save hanxi/29545b18fad315133623b47342d0f4eb to your computer and use it in GitHub Desktop.
H5 拖拽上传文件
// 获得拖拽文件的回调函数
function getDropFileCallBack (dropFiles) {
//console.log(dropFiles, dropFiles.length)
upload_parse(dropFiles)
}
var dropZone = document.querySelector("#dropZone")
dropZone.addEventListener("dragenter", function (e) {
e.preventDefault()
e.stopPropagation()
}, false)
dropZone.addEventListener("dragover", function (e) {
e.dataTransfer.dropEffect = 'copy' // 兼容某些三方应用,如圈点
e.preventDefault()
e.stopPropagation()
}, false)
dropZone.addEventListener("dragleave", function (e) {
e.preventDefault()
e.stopPropagation()
}, false)
dropZone.addEventListener("drop", function (e) {
e.preventDefault()
e.stopPropagation()
var df = e.dataTransfer
var dropFiles = [] // 拖拽的文件,会放到这里
var dealFileCnt = 0 // 读取文件是个异步的过程,需要记录处理了多少个文件了
var allFileLen = df.files.length // 所有的文件的数量,给非Chrome浏览器使用的变量
// 检测是否已经把所有的文件都遍历过了
function checkDropFinish () {
if ( dealFileCnt === allFileLen-1 ) {
getDropFileCallBack(dropFiles)
}
dealFileCnt++
}
if(df.items !== undefined){
// Chrome拖拽文件逻辑
for(var i = 0; i < df.items.length; i++) {
var item = df.items[i]
if(item.kind === "file" && item.webkitGetAsEntry().isFile) {
var file = item.getAsFile()
dropFiles.push(file)
//console.log(file)
checkDropFinish()
}
}
} else {
// 非Chrome拖拽文件逻辑
for(var i = 0; i < allFileLen; i++) {
var dropFile = df.files[i]
if ( dropFile.type ) {
dropFiles.push(dropFile)
checkDropFinish()
} else {
try {
var fileReader = new FileReader()
fileReader.readAsDataURL(dropFile.slice(0, 3))
fileReader.addEventListener('load', function (e) {
console.log(e, 'load')
dropFiles.push(dropFile)
checkDropFinish()
}, false)
fileReader.addEventListener('error', function (e) {
console.log(e, 'error,不可以上传文件夹')
checkDropFinish()
}, false)
} catch (e) {
console.log(e, 'catch error,不可以上传文件夹')
checkDropFinish()
}
}
}
}
}, false)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment