v2.5.2
Giriş yap

ajax ile birden fazla data nasıl gönderirim

furkanmeclis
1,030 defa görüntülendi ve 1 kişi tarafından değerlendirildi

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",
                            });
                            }
                            
                        });
webdevyusuf
1443 gün önce

@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"];

?>