ajax ile birden fazla data nasıl gönderirim
burda resimi ayırt edebilmek için bir id değeri gönderip veri tabanına o şekilde kaydetmek istiyorum ama id değerini ajax ile nasıl göderirim alttaki koda entegere ederek
$.ajax({
url: "resimyukle.php",
data: new FormData(this),
type: "post",
processData: false,
cache: false,
contentType: false,
success:function(e) {
swal("Başarılı", "Resimler Başarıyla Yüklendi", "success", {
button: "Tamam",
});
}
});
@bgokcol dediği gibi yapabilirsin ancak alternatif olarak şu şekildede yapabilirsin (json ile):
app.js
$.ajax({
url: "api.php",
type: "post",
data: JSON.stringify({
"name":"Yusuf"
// ...
}),
success: function(e) {
console.log(e)
}
})
api.php
<?php
$content = json_decode(file_get_contents("php://input"), true);
echo $content["name"];
?>