因此,我有一个“File”物体(通过处理文件拖拉和从桌面上 drop出)。 我可以向服务器寄送文件,然后将文件退回,以备处理。 但是,如果不这样做,能否阅读其内容?
Here, play around with this fiddle. Drag any file to the box and use the variable file
.
我已经尝试了这个目标的所有方法。 你们能否拿到你刚被拖入浏览器的文件内容?
PS:我向服务器发送文件,如:
var ajaxRequest = new XMLHttpRequest();
ajaxRequest.open("returnRawPostData.php");
ajaxRequest.send(file);
我可能已经错过上述法典中的内容,但这只是因为有人不使用简明的JAJAX电话。