gpt4 book ai didi

javascript - Angular 2如何从输入类型文件多个的文件中删除文件?

转载 作者:行者123 更新时间:2023-12-03 02:01:29 29 4
gpt4 key购买 nike

如何从具有多个属性的输入类型选择的文件中删除特定文件?

<input type="file" (change)="onFileChange($event)" #fileInput multiple>

enter image description here

我想删除选定的文件之一。 https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/file

https://jsfiddle.net/Sagokharche/eL3eg6k4/

最佳答案

你需要它无法选择吗?然后使用HTML Input file accept属性(property)。例如,accept="image/png"

或者您希望它在用户选择后从输入中过滤?然后您应该使用自定义指令或在上传时检查 ts 代码中的文件类型。

编辑在这种情况下,在您的代码中:

onFileChange(event) {
const fileList = event.target.files;
console.log("User selected fileList:", fileList)
Array.from(fileList).filter(
item => {
console.log("file mime type:", item['type'])
})

const filesToUpload = Array.from(fileList).filter(
item => { return item['type'] != "application/zip" })

console.log("reduced list:", filesToUpload)
}

Working stackblitz example here .

关于javascript - Angular 2如何从输入类型文件多个的文件中删除文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49998682/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com