编程语言
首页 > 编程语言> > javascript – 添加文件(JS对象)到输入type =“file”

javascript – 添加文件(JS对象)到输入type =“file”

作者:互联网

我需要一种方法将File对象添加到文件输入字段.

请注意,我不想要set the value的文件字段. (这是一个安全隐患,……我知道)
我已经有了文件本身(及其所有内容!)

我正在创建这样的File对象:

canvas.toBlob(function(blob) {
  var file = new File([blob], 'file.png');
  // and now I want to add MY File to the input here
});

请不要告诉我如何上传文件,我知道XMLHttpRequest Level 2.我想将文件上传到外部网站(可能使用用户脚本或类似的东西).

那么,我该如何实现呢?
或者,如果不可能:为什么我不能添加我实际拥有的文件(因为我在浏览器中创建它(作为虚拟文件,在用户文件系统中甚至不存在))到我拥有的输入字段太? (从技术上讲,输入字段可能是我自己的,这在这里无关紧要)

解决方法:

不,你不能.

摘自here

It seems like you want to take the File object from the drop event and assign it to the element. Unfortunately, you can’t do that. Only the user can select files; you can’t dynamically change the files which will be uploaded because browsers deny JavaScript this ability for security reasons.

标签:html-input,javascript,file,fileapi
来源: https://codeday.me/bug/20191003/1847755.html