gpt4 book ai didi

php - ajax未将文件图片上传到数据库和服务器

转载 作者:行者123 更新时间:2023-11-30 00:39:56 26 4
gpt4 key购买 nike

我的问题是,当我出于某种原因使用 ajax 提交时,我的脚本没有将图片上传到服务器上并将其插入数据库。如果我使用 php action="file.php"提交表单,它就可以工作。这是我的 ajax 脚本和 php 脚本。我不明白问题出在哪里以及为什么它适用于 php 提交而不适用于 ajax。提前致谢。

<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" => ""));
?>

最佳答案

序列化方法将表单字段数据放入符合 application/x-www-form-urlencoded 内容类型的字符串中,用于将表单提交到服务器进行处理,而文件则在 multipart/form- 中编码的请求中提交数据内容类型,因此序列化会忽略文件输入。

你应该使用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 插件以表单上传文件希望它会有所帮助

关于php - ajax未将文件图片上传到数据库和服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21852671/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com