Home > Web Front-end > JS Tutorial > body text

What are the ways to request async with Ajax? how to use

php中世界最好的语言
Release: 2018-04-04 16:49:28
Original
2276 people have browsed it

This time I will bring you what are the ways of Ajax request async? How to use it, what are the precautions for Ajax request async, the following is a practical case, let's take a look.

test.html code:

<a href="javascript:void(0)" onmouseover="testAsync()">
Copy after login

asy.js code:

function testAsync(){
  var temp;
  $.ajax({
    async: false,
    type : "GET",
    url : 'tet.php',
    complete: function(msg){
      alert('complete');
    },
    success : function(data) {
      alert('success');
      temp=data;
    }
  });
  alert(temp+'  end');
}
Copy after login

tet.php code :

<?php
  echo "here is html code";
  sleep(5);
?>
Copy after login

async: false, (default is true);

As above: false means synchronization. The Ajax request in this testAsync() method locks the entire browser. Only after the execution of tet.php is completed, Only then can you perform other operations.

When async: true, the ajax request is asynchronous. But there is a problem: the ajax request in testAsync() and the subsequent operations are executed asynchronously, so when tet.php has not been executed, the operations following the ajax request may have been executed.

For example: alert(temp+' end');

However, the temp data is assigned after the ajax request success, and as a result, it will be empty when output.

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

Methods for ajax to read Json data

Methods to construct AJAX to implement form JSON conversion

The above is the detailed content of What are the ways to request async with Ajax? how to use. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!