“Ajax Post Метод в jQuery” Ответ

Ajax Post Call

<script>window.onload = function(){
    let aData = {"profile": "developer", "to": "rashid.jorve@live.in"};
	console.log(FormData);
    $.ajax({
        type: "POST",
        url: "/api/saveProfile",
        data: JSON.stringify(aData),
        contentType: "application/json",  
            success: function(){
               alert("Request was successful");
            }
        });
};
Defeated Dormouse

Сделайте Ajax запрос Post jQuery

$.ajax({
  method: "POST",
  url: "some.php",
  data: { name: "John", location: "Boston" }
})

Better Bison

Ajax post

var myKeyVals = { A1984 : 1, A9873 : 5, A1674 : 2, A8724 : 1, A3574 : 3, A1165 : 5 }



var saveData = $.ajax({
      type: 'POST',
      url: "someaction.do?action=saveData",
      data: myKeyVals,
      dataType: "text",
      success: function(resultData) { alert("Save Complete") }
});
saveData.error(function() { alert("Something went wrong"); });
Proud Pintail

Ajax Post Method

function addtofav(e, id) {
            $.ajax({
                url: '@Url.Action("Action_Name", "Controller_Name")',
                type: 'POST',
                data: { Id: id }
            }).done(function () {
                swal('', 'Success_Message!', 'success');
            }).fail(function () {
                swal('', 'Failed_Message!', 'warning');
            })
        }
Said HR

jquery ajax $ .post с данными

$.post('http://example.com/form.php', {category:'client', type:'premium'}, function(response){ 
      alert("success");
      $("#mypar").html(response.amount);
});
The Strangest Salamander

Ajax Post Метод в jQuery

  $.post("demo_test_post.asp", // change demo_test_post.asp to your server route
  {
    name: "Donald Duck",
    city: "Duckburg"
  },
  function(data, status){
    alert("Data: " + data + "\nStatus: " + status);
  });
Beautiful Buzzard

Ответы похожие на “Ajax Post Метод в jQuery”

Вопросы похожие на “Ajax Post Метод в jQuery”

Больше похожих ответов на “Ajax Post Метод в jQuery” по JavaScript

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

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