“JQUERY Ajax Type JSON” 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

JQUERY Ajax Type 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

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

jQuery ajax sur l'échec

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

Réponses similaires à “JQUERY Ajax Type JSON”

Questions similaires à “JQUERY Ajax Type JSON”

Plus de réponses similaires à “JQUERY Ajax Type JSON” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code