为什么我的代码从错误位置运行:
error: function(e) {
console.log(e);
}
在后端代码中清理工作.. 我得到结果文件上传成功,但从错误块
运行代码前端代码:
var file_data = $("#profile_photo").prop("files")[0];
var form_data = new FormData();
form_data.append("file", file_data);
$.ajax({
url: "upload.php",
dataType: 'script',
cache: false,
contentType: false,
processData: false,
data: form_data,
type: 'post',
success: function (data) {
console.log(data);
},
error: function(e) {
console.log(e);
}
})