3

我正在尝试使用 javascript 中的拖放插件来使用 ajax 上传文件。

<script>
DnD.on('#drop-area', {

'drop': function (files, el) {
   el.firstChild.nodeValue = 'Drag some files here.';
   var names = [];
   [].forEach.call(files, function (file, i) {
      names.push(file.name + ' (' + file.size + ' bytes)');

   var xhr = new XMLHttpRequest();
   xhr.open('POST','upload.php');
   xhr.setRequestHeader("Content-type", "multipart/form-data"); 
   xhr.send(file);
   console.log(xhr.responseText);
});
document.querySelector('#dropped-files p i').firstChild.nodeValue = names.join(', ');
}
});
</script>

这是upload.php:

<?php
print_r($_POST);
?>

基本上我还没有编写脚本来上传文件,因为我仍在弄清楚如何才能访问通过 JavaScript 发送的数据。你能指导我下一步该怎么做吗?如何从upload.php 访问文件。

4

1 回答 1

9

尝试使用FormData而不是xhr

var formData = new FormData();
formData.append("thefile", file);
xhr.send(formData);

您可以通过以下方式访问您的文件array

<?php var_dump($_FILES["thefile"]); ?> 

查看更多:http ://www.w3schools.com/php/php_file_upload.asp

于 2012-06-04T10:35:41.297 回答