我正在尝试使用 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 访问文件。