“jquery ajax type json” Ответ

Как установить 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

Как установить 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 on Fail

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

Ответы похожие на “jquery ajax type json”

Вопросы похожие на “jquery ajax type json”

Больше похожих ответов на “jquery ajax type json” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования