“Como definir o jQuery ajax do tipo json” Respostas de código

Como definir o jQuery ajax do tipo json

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

Como definir o jQuery ajax do tipo json

        $.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

Respostas semelhantes a “Como definir o jQuery ajax do tipo json”

Perguntas semelhantes a “Como definir o jQuery ajax do tipo json”

Mais respostas relacionadas para “Como definir o jQuery ajax do tipo json” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código