“Cómo establecer JSON Tipo jQuery Ajax” Código de respuesta

Cómo establecer JSON Tipo jQuery Ajax

$.ajax({
    type: "POST",
    contentType: "application/json",
    url: 'http://localhost:16329/Hello',
    data: { name: 'norm' },
    dataType: "json"
});
Obedient Osprey

Cómo establecer JSON Tipo jQuery Ajax

        $.ajax({
            type: "POST",
            url: siteRoot + "api/SpaceGame/AddPlayer",
            async: false,
            data: JSON.stringify({ Name: playersShip.name, Credits: playersShip.credits }),
            contentType: "application/json",
            complete: function (data) {
            console.log(data);
            wait = false;
        }
    });
Obedient Osprey

Respuestas similares a “Cómo establecer JSON Tipo jQuery Ajax”

Preguntas similares a “Cómo establecer JSON Tipo jQuery Ajax”

Más respuestas relacionadas con “Cómo establecer JSON Tipo jQuery Ajax” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código