admin管理员组文章数量:1350119
I understand that the <input type="file">
for the most part cannot be manipulated by javascript for security reasons, but is it possible if I have a File object?
I have a drag area on a page, that I can get a File object out of. I don't want to use the xhr.sendAsBinary, I'd rather just upload from a regular form with the target set as a frame.
I've tried doing something like
var select = document.getElementById('upload_1');
select.files[0] = myFile;
myForm.submit();
Is there a way to do this?
I understand that the <input type="file">
for the most part cannot be manipulated by javascript for security reasons, but is it possible if I have a File object?
I have a drag area on a page, that I can get a File object out of. I don't want to use the xhr.sendAsBinary, I'd rather just upload from a regular form with the target set as a frame.
I've tried doing something like
var select = document.getElementById('upload_1');
select.files[0] = myFile;
myForm.submit();
Is there a way to do this?
Share Improve this question edited Dec 12, 2011 at 3:32 Jacob 78.9k24 gold badges157 silver badges241 bronze badges asked Dec 12, 2011 at 2:59 wmarbutwmarbut 4,7057 gold badges44 silver badges76 bronze badges1 Answer
Reset to default 7UPDATE
It seems like you want to take the File
object from the drop
event and assign it to the <input>
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.
Since you said you have a drag area, I'm assuming you are using and targeting a browser that supports drag and drop. Note that not all browsers support drag and drop so my example here is limited to such browsers.
With drag and drop, you can get the File
object out of the drop event and you don't need an input
element.
// when you attach the 'drop' event listener
var dropzone = document.getElementById('drag_area'); // <-- ID of your drag area
attachEvent(dropzone, 'drop', function(event) {
var dt = event.dataTransfer;
var fileList = dt.files;
var file = fileList[0]; // you would have to change this if you allow multi-file upload
uploadFile(file);
});
function uploadFile(fileToUpload) {
var xhr = new XMLHttpRequest();
xhr.open("POST", "url", true); // <-- provide the proper URL
var form_data = new FormData();
form_data.append('file', fileToUpload);
xhr.send(form_data);
}
function attachEvent(element, type, fn) {
if (element.addEventListener) {
element.addEventListener(type, fn, false);
} else if (element.attachEvent) {
element.attachEvent('on' + type, fn);
}
}
Note that this isn't 100% browser patible. Some browsers don't support file uploading through XMLHttpRequest()
. If you want to support those browsers, then you have to do something different.
Finally, my example doesn't consider using forms. If you want a form-based approach, please let me know. I can help you with that as well :)
Let me know if you have any questions.
本文标签: javascriptHtml file inputset selection from File objectStack Overflow
版权声明:本文标题:javascript - Html file input, set selection from File object - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743869479a2553198.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论