1

How to call to a python handler from jquery ajax? can any one give me an example?

not 0x12
  • 19,360
  • 22
  • 67
  • 133

1 Answers1

1
$.ajax({
  url: "/resultshandler",
  type: 'POST',
  data: data,
  success: function(data, status){
    //check status
    //do something with data
  }
});

may this post will help you jquery.ajax post request to get data from app engine server

Community
  • 1
  • 1
Rafay
  • 30,950
  • 5
  • 68
  • 101