current location: Home > Download > Learning resources > Web page production > "Newbies must learn AJAX"
"Newbies must learn AJAX"
Classify: Learning materials / Web page production | Release time: 2018-01-20 | visits: 2949220 |
Download: 161 |
Latest Downloads
Red Alert Online
Delta Force
Pokémon UNITE
Fantasy Aquarium
Girls Frontline
Wings of Stars
Little Flower Fairy Fairy Paradise
Restaurant Cute Story
Shanhe Travel Exploration
Love and Producer
24 HoursReading Leaderboard
- 1 How to Efficiently Determine the Number of Days in a Month Using SQL Server?
- 2 React Rock
- 3 Should I Dispose of My LINQ to SQL Data Context?
- 4 How to Enable SQL Statement Logging in Grails?
- 5 How to Efficiently Retrieve Dictionaries from SQLite Queries?
- 6 Js in bits - (datatypes - String)
- 7 ey Questions to Ask Before Hiring a Software Development Company
- 8 Why Does Gson Throw "Expected BEGIN_OBJECT but was STRING" and How Can I Fix It?
- 9 How to Fix "Incorrect syntax near ' '" Errors in OPENROWSET Queries with Variables?
- 10 Why Do I Have Unwanted Space Between My Inline-Block List Items?
- 11 PHP Features You Should Be Using in 5
- 12 Public Fields vs. Properties: When Should You Choose Properties for Data Encapsulation?
- 13 Why Does `setTimeout` in a `for`-Loop Print the Last Value Twice, and How Can I Fix It?
- 14 Maximum Score After Splitting a String
- 15 Why Does PHP Issue "Only Variables Should Be Passed by Reference" Warnings, and How Can They Be Resolved?
Latest Tutorials
-
- Go language practical GraphQL
- 2431 2024-04-19
-
- 550W fan master learns JavaScript from scratch step by step
- 3843 2024-04-18
-
- Getting Started with MySQL (Teacher mosh)
- 2053 2024-04-07
-
- Mock.js | Axios.js | Json | Ajax--Ten days of quality class
- 2826 2024-03-29
1. Introduction to Ajax, advantages and disadvantages, application scenarios and technology
Introduction to Ajax:
Asynchronous Javascript And XML (Asynchronous JavaScript and XML)
It is not a single technology, but a combination that organically utilizes a series of technologies related to interactive web applications.
AJAX is a technology for creating fast, dynamic web pages. AJAX enables web pages to update asynchronously by exchanging small amounts of data with the server in the background. This means that parts of a web page can be updated without reloading the entire page.
advantage:
- The page does not refresh and the user experience is good.
- Asynchronous communication, faster response capability.
- Reduce redundant requests and reduce server load
-
Based on standardized and widely supported technology, no need to download plug-ins or applets
shortcoming:
- Ajax kills the back button, which destroys the browser's back mechanism.
- There are certain security issues.
- Support for search engines is relatively weak.
- Destroys the program's exception mechanism.
-
Unable to access
directly using URL
ajax application scenario
- Scenario 1. Data validation
- Scenario 2. Get data on demand
- Scenario 3. Automatically update the page