“JQuery Ajax 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

JQuery Ajax tipo 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

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

jQuery Ajax em falha

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

Respostas semelhantes a “JQuery Ajax tipo JSON”

Perguntas semelhantes a “JQuery Ajax tipo JSON”

Mais respostas relacionadas para “JQuery Ajax tipo JSON” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código