Agregar un JSON en la petición POST

Agregar un JSON en la petición POST

KarlaPKarlaP Posts: 6Questions: 2Answers: 0

Buen día, requiero agregar un json en una llamada POST, pero no encuentro la manera de hacerlo:

`$(document).ready(function() {
    $('#example').DataTable( {
        "processing": true,
        "serverSide": true,
        "ajax": {
            "url": "scripts/post.php",
            "type": "POST"
        },
        "columns": [
            { "data": "first_name" },
            { "data": "last_name" },
            { "data": "position" },
            { "data": "office" },
            { "data": "start_date" },
            { "data": "salary" }
        ]
    } );
} );`

A la tabla anterior requiero mandarle el json, lo hice de la siguiente manera pero no funciona, ojalá alguien pueda ayudarme

ajax: {
            url: ip + '/decdemo/public/findPublict',
            type: "POST",
            contentType: "application/json",
            data: JSON.stringify({
                "nombres": nombre,
                "apellido1": apellido
            })
        },

Answers

  • KarlaPKarlaP Posts: 6Questions: 2Answers: 0

    también intenté hacer esto y no funcionó:

    url: ip + '/decl-demo/public/findPublic',
                type: "POST",
                data: function ( d ) {
                    return JSON.stringify({
                        "nombres": nombre,
                        "apellido1": apellido
                    });
                  }
    
  • KarlaPKarlaP Posts: 6Questions: 2Answers: 0

    Lo logré haciendo esto:

    url: ip + '/decl-demo/public/findPublic',
                type: "POST",
                contentType: "application/json",
                data: function ( d ) {
                    return JSON.stringify({
                        "nombres": nombre,
                        "apellido1": apellido
                    });
                },
    

    Lo comento por si a alguien más le sirve la información.
    Gracias

Sign In or Register to comment.