我的问题是我的脚本没有上传服务上的pic,并且当我因某种原因使用ajax提交时将其插入数据库。如果我使用php action =“file.php”提交表单,则可以。这是我的ajax脚本和php one.I不知道问题出在哪里以及为什么它与php提交并且不使用ajax。 Thnx提前。
<script>
$(function() {
//twitter bootstrap script
$("button#submit").click(function(){
$.ajax({
type: "POST",
url: "engine/app/process.php",
data: $(\'form.edit\').serialize(),
dataType:\'json\',
success: function(data){
$("#bday").html(data.a)
$("#locatie").html(data.b)
$("#descriere").html(data.c)
$("#interes").html(data.d)
$("#status").html(data.e)
$(".img").html(data.f)
$("#myModal").modal(\'hide\');
},
error: function(){
alert("failure");
}
});
});
});
</script>
php脚本
<?php
require_once('../core/dbconfig.php');
$dbc = mysqli_connect(DB_SERVER, DB_USERNAME, DB_PASS, DB_NAME);
$nume=$_POST['nume'];
$bday=$_POST['bday'];
$locatie=$_POST['locatie'];
$status=$_POST['status'];
$interese=$_POST['interese'];
$despre=$_POST['descriere'];
$id_user=$_POST['id_user'];
$query="Update `users` SET username='$nume',bday='$bday',Locatie='$locatie',Relatie='$status',Interese='$interese',Descriere='$despre' where id='$id_user' ";
$result=mysqli_query($dbc,$query) or die("query failed: " . mysqli_error($dbc));
$path = '../../images/users/'.$id_user.'/';
if(!is_dir($path)){
mkdir($path,0755);
}
$valid_formats = array("jpg", "png", "gif", "bmp", "jpeg", "JPG");
$name = $_FILES['img1']['name'];
$size = $_FILES['img1']['size'];
if(strlen($name))
{
list($txt, $ext) = explode(".", $name);
if(in_array($ext,$valid_formats))
{
if($size<(1024*1024))
{
/*$actual_image_name = time().substr(str_replace(" ", "_", $txt), 5).".".$ext;*/
$actual_image_name=$id_user.'.'.$ext;
$tmp = $_FILES['img1']['tmp_name'];
if(move_uploaded_file($tmp, $path.$actual_image_name))
{
$queryz="Insert into Galerie (ID_User,Poza,Poza_Profil) VALUES ('$id_user','$actual_image_name',1)";
$resultz=mysqli_query($dbc,$queryz) or die("query failed: " . mysqli_error($dbc));
}
else
echo "failed";
}
else
echo "Image file size max 1 MB";
}
else
echo "Invalid file format..";
}
echo json_encode(array("a" => $bday, "b" => $locatie,"c" => $despre,"d" => $interese,"e" => $name,"f" => ""));
?>
答案 0 :(得分:1)
serialize方法将表单字段数据放入符合application / x-www-form-urlencoded内容类型的字符串中,该内容类型用于将表单提交给服务器进行处理,而文件则以multipart / form-编码的请求提交数据内容类型,因此,serialize忽略文件输入。
您应该使用formData
var form = new FormData(document.getElementById('your_frm_id'));
var file = document.getElementById('img1').files[0];
if (file) {
$('#sent_progress').show();
form.append('img1', file);
}
在ajax中使用
data: form,
在此处阅读更多https://developer.mozilla.org/en-US/docs/Web/Guide/Using_FormData_Objects
或者你可以使用一些Jquery插件来上传你的文件 希望它会有所帮助
答案 1 :(得分:-1)