確かに、Stack Overflowには似たような質問がありますが、私の要件をまったく満たしていないようです。
これが私がやろうとしていることです。
ここまでは、すべて順調です。データは必要に応じてデータベースに格納されます。しかし、AJAX投稿を介してフォームを送信したいのです。
.ajax()
jQueryメソッドとのインターフェースが望ましい純粋なjavascriptを使用してフィールドの値が変更されたときにファイルを自動アップロードすることで、これを行う方法を想像できると思いますが、jQueryで送信するために一気にすべてを実行したいです。ファイルオブジェクト全体を渡す必要があるため、クエリ文字列を使用して実行することはできないと考えていますが、この時点で何をするかについて少し迷っています。
これは達成できますか?
難しくありません。まず、 FileReader Interface を見てください。
したがって、フォームが送信されると、送信プロセスをキャッチし、
var file = document.getElementById('fileBox').files[0]; //Files[0] = 1st file
var reader = new FileReader();
reader.readAsText(file, 'UTF-8');
reader.onload = shipOff;
//reader.onloadstart = ...
//reader.onprogress = ... <-- Allows you to update a progress bar.
//reader.onabort = ...
//reader.onerror = ...
//reader.onloadend = ...
function shipOff(event) {
var result = event.target.result;
var fileName = document.getElementById('fileBox').files[0].name; //Should be 'picture.jpg'
$.post('/myscript.php', { data: result, name: fileName }, continueSubmission);
}
次に、サーバー側(つまり、myscript.php)で:
$data = $_POST['data'];
$fileName = $_POST['name'];
$serverFile = time().$fileName;
$fp = fopen('/uploads/'.$serverFile,'w'); //Prepends timestamp to prevent overwriting
fwrite($fp, $data);
fclose($fp);
$returnData = array( "serverFile" => $serverFile );
echo json_encode($returnData);
またはそのようなもの。間違っている可能性があります(修正してください)が、ファイルを1287916771myPicture.jpg
のようなものとしてサーバーの/uploads/
に保存し、JSON変数で応答する必要があります(continueSubmission()
関数)サーバー上のfileNameを含む。
fwrite()
および jQuery.post()
を確認してください。
上記のページでは、 readAsBinaryString()
、 readAsDataUrl()
、および readAsArrayBuffer()
を他のニーズ(画像、ビデオなど)に使用する方法について詳しく説明しています。
JQuery(およびFormData APIなし)を使用すると、次のようなものを使用できます。
function readFile(file){
var loader = new FileReader();
var def = $.Deferred(), promise = def.promise();
//--- provide classic deferred interface
loader.onload = function (e) { def.resolve(e.target.result); };
loader.onprogress = loader.onloadstart = function (e) { def.notify(e); };
loader.onerror = loader.onabort = function (e) { def.reject(e); };
promise.abort = function () { return loader.abort.apply(loader, arguments); };
loader.readAsBinaryString(file);
return promise;
}
function upload(url, data){
var def = $.Deferred(), promise = def.promise();
var mul = buildMultipart(data);
var req = $.ajax({
url: url,
data: mul.data,
processData: false,
type: "post",
async: true,
contentType: "multipart/form-data; boundary="+mul.bound,
xhr: function() {
var xhr = jQuery.ajaxSettings.xhr();
if (xhr.upload) {
xhr.upload.addEventListener('progress', function(event) {
var percent = 0;
var position = event.loaded || event.position; /*event.position is deprecated*/
var total = event.total;
if (event.lengthComputable) {
percent = Math.ceil(position / total * 100);
def.notify(percent);
}
}, false);
}
return xhr;
}
});
req.done(function(){ def.resolve.apply(def, arguments); })
.fail(function(){ def.reject.apply(def, arguments); });
promise.abort = function(){ return req.abort.apply(req, arguments); }
return promise;
}
var buildMultipart = function(data){
var key, crunks = [], bound = false;
while (!bound) {
bound = $.md5 ? $.md5(new Date().valueOf()) : (new Date().valueOf());
for (key in data) if (~data[key].indexOf(bound)) { bound = false; continue; }
}
for (var key = 0, l = data.length; key < l; key++){
if (typeof(data[key].value) !== "string") {
crunks.Push("--"+bound+"\r\n"+
"Content-Disposition: form-data; name=\""+data[key].name+"\"; filename=\""+data[key].value[1]+"\"\r\n"+
"Content-Type: application/octet-stream\r\n"+
"Content-Transfer-Encoding: binary\r\n\r\n"+
data[key].value[0]);
}else{
crunks.Push("--"+bound+"\r\n"+
"Content-Disposition: form-data; name=\""+data[key].name+"\"\r\n\r\n"+
data[key].value);
}
}
return {
bound: bound,
data: crunks.join("\r\n")+"\r\n--"+bound+"--"
};
};
//----------
//---------- On submit form:
var form = $("form");
var $file = form.find("#file");
readFile($file[0].files[0]).done(function(fileData){
var formData = form.find(":input:not('#file')").serializeArray();
formData.file = [fileData, $file[0].files[0].name];
upload(form.attr("action"), formData).done(function(){ alert("successfully uploaded!"); });
});
FormData APIを使用すると、フォームのすべてのフィールドをFormDataオブジェクトに追加して、$。ajax({url:url、data:formData、processData:false、contentType:false、type: "POST"})で送信するだけです。