Saturday, April 28, 2018

javascript - how can I cancel an Ajax request?




In phonegap how to cancel an ajax request in program, I would like to set cancel button for control the request when it's too slow




$.ajax({
type: "GET",
url: url,
success: function(m) {
alert( "success");
}
});

Answer



hi it's similar as Abort Ajax requests using jQuery,anyway This can help you




 var ab = $.ajax({  type: "GET",  url: url,  success: function(m)  {    alert( "success");  } });

//kill the request
ab.abort()

No comments:

Post a Comment

plot explanation - Why did Peaches' mom hang on the tree? - Movies & TV

In the middle of the movie Ice Age: Continental Drift Peaches' mom asked Peaches to go to sleep. Then, she hung on the tree. This parti...