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

What is ajax async

little bottle
Release: 2019-05-29 13:54:35
Original
4574 people have browsed it

The full name of AJAX is Asynchronous JavaScript and XML (asynchronous JavaScript and XML). Ajax is not a new programming language, but a new way of using existing standards.

What is ajax async

#ajax is a technology that can update parts of a web page without reloading the entire web page.

ajax is a technology used to create fast dynamic web pages. By exchanging small amounts of data with the server in the background. Ajax allows web pages to be updated asynchronously. This means that parts of a web page can be updated without reloading the entire page. If traditional web pages (which do not use ajax) need to update content, the entire web page must be reloaded.

Advantages of ajax:

1. The biggest point is that the page does not refresh, and the user experience is very good.

 2. Use asynchronous mode to communicate with the server, with faster response capability.

 3. You can transfer some of the work previously burdened by the server to the client, using the client's idle capabilities to process it, reducing the burden on the server and bandwidth, and saving space and broadband rental costs. And to reduce the burden on the server, the principle of ajax is to "fetch data on demand", which can minimize the burden on the server caused by redundant requests and responses.

4. Based on standardized and widely supported technology, there is no need to download plug-ins or small programs.

 5. Ajax can make Internet applications smaller, faster, and more user-friendly.

Disadvantages of ajax:

1. Ajax does not support the browser back button.

 2. Security issues AJAX exposes the details of interaction with the server.

 3. The support for search engines is relatively weak.

 4. Destroyed the exception mechanism of the program.

5. Not easy to debug.

The above is the detailed content of What is ajax async. 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
Latest Articles by Author
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!