“So setzen Sie JSON Typ JQuery Ajax” Code-Antworten

So setzen Sie JSON Typ JQuery Ajax

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

So setzen Sie JSON Typ 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

Ähnliche Antworten wie “So setzen Sie JSON Typ JQuery Ajax”

Fragen ähnlich wie “So setzen Sie JSON Typ JQuery Ajax”

Weitere verwandte Antworten zu “So setzen Sie JSON Typ JQuery Ajax” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen