How to call to a python handler from jquery ajax?

401 views Asked by At

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

1

There are 1 answers

0
Rafay On BEST ANSWER
$.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