我目前正在關注this example以進行HTML 5拖放操作。我希望使用這個上傳文件到一個遠程FTP服務器與PHP腳本。但是,我的php腳本如何訪問這些丟棄的文件?HTML 5使用jQuery和PHP拖放上傳
與常規網頁表單,我可以用$ _FILES。但我不認爲我可以用$ _FILES的下降文件..
在示例中,腳本下降後調用handleFiles功能事件
function handleFiles(files) {
var file = files[0];
document.getElementById("droplabel").innerHTML = "Processing " + file.name;
var reader = new FileReader();
// init the reader event handlers
reader.onprogress = handleReaderProgress;
reader.onloadend = handleReaderLoadEnd;
// begin the read operation
reader.readAsDataURL(file);
}
我猜我可以遍歷數組列表中的每個元素,每個元素髮送到我的PHP腳本。正如我上面提到的,我怎樣才能將這個元素從數組列表發送到php腳本? JSON? jQuery POST?
我知道有各種jQuery插件可以實現這一點,我已經下載了其中的幾個......但是我只是很好奇,知道如果我可以用這個例子實現相同的事情。
相關:http://stackoverflow.com/questions/166221/how-can-i-upload-files-asynchronously-with-jquery – 2014-02-04 11:33:03