这篇文章看起来很有希望,但我无法弄清楚代码中的blobFile
是什么?我在哪里可以得到这个变量?
How to upload a file using jQuery.ajax and FormData
额外问题:
我认为FormData
对象包含所有输入字段包括文件输入中的数据。但似乎并非如此。否则,我们不需要将文件数据附加到FormData
。任何人都可以解释为什么文件输入不包含在FormData
?
另外,我使用Django后端,按照惯例访问request.FILES
中的上传文件。如何将文件数据放在request.FILES
而不是request.POST
$.ajax()
中?
修改
我只是发现,我的request.POST
和formData
中的NOTHING是空的。无法弄清楚原因..以下是相关代码:
// html
<form action="" method="POST" enctype="multipart/form-data">{% csrf_token %}
<span class='file-name' id='file-name-1'>FILE 1</span>
<input type="file" id='id_image'>
<input class="browse-click" type="button" value="+"/>
<input id="send" type="submit" value="change">
</form>
// js
<script>
// when button is clicked, the file browser opens
$('.browse-click').on("click" , function () {
$('#id_image').click();
});
// upload file async when file is selected in file browser
$('#id_image').on('change', function () {
var currentpath = window.location.pathname;
var formData = new FormData($('form')[0]);
formData.append('csrfmiddlewaretoken', '{{ csrf_token }}');
$.ajax({
url: currentpath, //server script to process data
type: 'POST',
xhr: function() { // custom xhr
var myXhr = $.ajaxSettings.xhr();
if(myXhr.upload){ // check if upload property exists
myXhr.upload.addEventListener('progress',progressHandlingFunction, false); // for handling the progress of the upload
}
return myXhr;
},
data: formData,
cache: false,
contentType: false,
processData: false
});
});
function progressHandlingFunction(e){
if(e.lengthComputable){
$('progress').attr({value:e.loaded,max:e.total});
}
}
</script>