“JQuery Ajax Typ JSON” 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

JQuery Ajax Typ JSON

$.ajax('/jquery/submitData', {
    type: 'POST',  // http method
    data: { myData: 'This is my data.' },  // data to submit
  	dataType: 'json',
    success: function (data, status, xhr) {
        $('p').append('status: ' + status + ', data: ' + data);
    },
    error: function (jqXhr, textStatus, errorMessage) {
            $('p').append('Error' + errorMessage);
    }
});
Tosindo

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

JQuery Ajax auf Fail

fail: function(xhr, textStatus, errorThrown){
	alert('request failed');
}
Andrew Lautenbach

Ähnliche Antworten wie “JQuery Ajax Typ JSON”

Fragen ähnlich wie “JQuery Ajax Typ JSON”

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

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen