大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。
Jetbrains全系列IDE使用 1年只要46元 售后保障 童叟无欺
imgList: [],
size: 0,
limit: undefined
}
},
methods: {
// 设置
fileClick() {
document.getElementById(‘upload_file’).click()
},
fileChange(el) {
if (!el.target.files[0].size) return
this.fileList(el.target)
el.target.value = ‘’
},
fileList(fileList) {
let files = fileList.files
for (let i = 0; i < files.length; i++) {
// 判断是否为文件夹
// eslint-disable-next-line eqeqeq
if (files[i].type != ‘’) {
this.fileAdd(files[i])
} else {
// 文件夹处理
this.folders(fileList.items[i])
}
}
},
// 文件夹处理
folders(files) {
let _this = this
// 判断是否为原生file
if (files.kind) {
files = files.webkitGetAsEntry()
}
files.createReader().readEntries(function(file) {
for (let i = 0; i < file.length; i++) {
if (file[i].isFile) {
_this.foldersAdd(file[i])
} else {
_this.folders(file[i])
}
}
})
},
foldersAdd(entry) {
let _this = this
entry.file(function(file) {
_this.fileAdd(file)
})
},
fileAdd(file) {
if (this.limit !== undefined) this.limit–
if (this.limit !== undefined && this.limit < 0) return
// 总大小
this.size = this.size + file.size
// 判断是否为图片文件
// eslint-disable-next-line eqeqeq
if (file.type.indexOf(‘image’) == -1) {
file.src = ‘wenjian.png’
this.imgList.push({
file
})
} else {
let reader = new FileReader()
let image = new Image()
let _this = this
reader.readAsDataURL(file)
reader.onload = function() {
file.src = this.result
image.onload = function() {
let width = image.width
let height = image.height
file.width = width
file.height = height
_this.imgList.push({
file
})
console.log(_this.imgList)
}
image.src = file.src
}
}
},
fileDel(index) {
this.size = this.size – this.imgList[index].file.size // 总大小
this.imgList.splice(index, 1)
if (this.limit !== undefined) this.limit = this.imgList.length
},
bytesToSize(bytes) {
if (bytes === 0) return ‘0 B’
let k = 1000 // or 1024
let sizes = [‘B’, ‘KB’, ‘MB’, ‘GB’, ‘TB’, ‘PB’, ‘EB’, ‘ZB’, ‘YB’]
let i = Math.floor(Math.log(bytes) / Math.log(k))
return (bytes / Math.pow(k, i)).toPrecision(3) + ’ ’ + sizes[i]
}
}
}
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/170649.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...