“Comment définir JSON Type jQuery Ajax” Réponses codées

Comment définir JSON Type jQuery Ajax

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

Comment définir JSON Type 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

Réponses similaires à “Comment définir JSON Type jQuery Ajax”

Questions similaires à “Comment définir JSON Type jQuery Ajax”

Plus de réponses similaires à “Comment définir JSON Type jQuery Ajax” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code