我有一个完美的 jquery ajax + html5 formdata 文件加上数据提交。但是如何获取发布的数据呢?
var fd = new FormData();
fb.apend(); // values here
然后是ajax
$.ajax({
url: url,
data: fd,
//something here
}).done(function(res){
alert(res); // Pop up with nothing
console.log(res); //New line in Google chrome console but nothing inside.
});