我写这篇文章是为了使用超文本标记语言中的input元素将图片上传到我本地的Apache this服务器。file记录为非空,但为什么form_data完全为空?
$('#upload-image').change(function(e){
var file = e.target.files[0];
var imageType = /image.*/;
if (!file.type.match(imageType))
return;
console.log(file);
var form_data = new FormDat