我已经完成了之前类似问题的大部分回复并尝试了相同的结果。没有服务器错误,服务器收到的数据字段为空。我正在使用表单数据。
var query = PFQuery(className: "PFEmployee")
$("#sbtn").onclick( function(){
var url = "php/add.php";
var fd = new FormData();
fd.append('file',files[0]);
fd.append('type',"music");
fd.append('username', $("input[name=username]").val());
$.ajax({
type :"POST",
url : url,
data : fd,
contentType: false,
processData: false,
success : function(resp){ alert("server response : " + resp );}
});
});