“Как установить json type jquery ajax” Ответ

Как установить json type jquery ajax

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

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

Ответы похожие на “Как установить json type jquery ajax”

Вопросы похожие на “Как установить json type jquery ajax”

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

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

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