作者 郭鑫
1 个管道 的构建 通过 耗费 1 秒

页面修改

... ... @@ -210,7 +210,7 @@
$('.save').click(function () {
var file = document.getElementById("previewImg").files[0];
console.log(file);
if(file.length != 0){
if(file.length != 0 ){
var formData = new FormData();
formData.append('file',file);
$.ajax({
... ... @@ -239,6 +239,8 @@
alert("上传失败!");
}
});
}else{
popup('修改成功');
}
})
... ...