gpt4 book ai didi

javascript - 以编程方式更改输入类型文件的值?

转载 作者:行者123 更新时间:2023-11-30 11:07:11 26 4
gpt4 key购买 nike

我正在尝试生成一些代码,我可以在整个站点中重复使用这些代码,从本质上讲,这是一个经过一些验证的照片选择器/选择器。这是我的代码:

class PhotoPicker
{
constructor(element)
{
this.element = element;

//Creating needed HTML Markup
this.createMarkUp();

//FileList of valid data.
this.validFiles = new DataTransfer();

//Initialise Picker.
this.input.onchange = () => {
this.updateOutput();
this.output.files = this.validFiles.files;
}
}

updateOutput()
{
const files = Array.from(this.input.files);
files.forEach((file) => {
let reader = new FileReader();
reader.readAsDataURL(file);
reader.onload = () => {
photo = this.createPhotoThumb({
url : reader.result,
name: file.name,
size: file.size
});
if (this.validatePhoto(file)) {
this.validFiles.items.add(file);
};
};
});
}

createMarkUp()
{
//Creating needed HTML Markup
}
createPhotoThumb(data = {})
{
//Creating a photo thumbnail for preview
}
validatePhoto(photo)
{
//Validating the photo
}
}

发生的事情是当我第一次选择一些图像时,显示缩略图并且有效文件列表 this.validFiles.files 得到更新,但 NOT 我计划发送到服务器的最终列表 this.output.files但是,在第二次尝试时,它成功了!最终列表会更新第一个选择的文件,不是第二个,依此类推。每次选择时,前一个选择的文件都会添加到最终列表中列出但不列出上次选择的文件。

最佳答案

我认为问题在于你期望的是

reader.onload = () => {
photo = this.createPhotoThumb({
url : reader.result,
name: file.name,
size: file.size
});
if (this.validatePhoto(file)) {
this.validFiles.items.add(file);
};
};

get 在您将有效文件分配给 this.output.files 之前执行。

但是 reader.onload 是异步执行的,因此您将有效文件分配给 this.output.files 会在有效文件添加到数组之前执行有效文件。

您必须实现一些等待阅读器的 onload 处理程序完成的逻辑。

这是一个可能的解决方案:

class PhotoPicker
{
constructor(element)
{
this.element = element;

// Creating needed HTML Markup
this.createMarkUp();

// FileList of valid data.
this.validFiles = new DataTransfer();

// Initialise Picker.
this.input.onchange = () => {
this.updateOutput()
.then(() => {
this.output.files = this.validFiles.files;
});
}
}

updateOutput()
{
const files = Array.from(this.input.files);
const fileLoaderPromises = [];
files.forEach((file) => {
const promise = new Promise((resolve) => {
let reader = new FileReader();
reader.readAsDataURL(file);
reader.onload = () => {
photo = this.createPhotoThumb({
url : reader.result,
name: file.name,
size: file.size
});
if (this.validatePhoto(file)) {
this.validFiles.items.add(file);
};
// Mark the file loader as "done"
resolve();
};
})

// Add the promise to the list of file loader promises
fileLoaderPromises.push(promise);
});

// Return a promise which resolves as soon as all file loader promises are done
return Promise.all(fileLoaderPromises);
}

// ...
}

关于javascript - 以编程方式更改输入类型文件的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55141465/

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