current location: Home > Download > Learning resources > Web page production > AJAX-Design Patterns

AJAX-Design Patterns
Classify: Learning materials / Web page production | Release time: 2018-01-30 | visits: 2907898 |
Download: 167 |
Latest Downloads
Horror Beat Phase Maker
Himalayan Children
Zebra AI
Supermarket Manager Simulator
Red Alert Online
Delta Force
Pokémon UNITE
Fantasy Aquarium
Girls Frontline
Wings of Stars
24 HoursReading Leaderboard
- 1 Kingdom Come: Deliverance 2 - Feast For The Poor Quest Walkthrough
- 2 Roblox: Pets Go - How To Get Diamonds
- 3 Roblox: Jujutsu Shenanigans - Locust Guy Guide
- 4 Roblox: Ninja Time - How To Get Spins
- 5 5 Proven Solutions for Monster Hunter Wilds Anti Tamper Error
- 6 How to Remove Empty Rows in Excel
- 7 Split Fiction Fatal Error: Discover Methods to Fix It on Windows
- 8 NYT Connections Answers And Hints - March 12, 2025 Solution #640
- 9 Exact Steps to Recover Deleted Files in Wise Duplicate Finder
- 10 How to Use Windows 11 Update Effectively: Best Practices and Tips
- 11 how to unlink rockstar account from steam
- 12 Enhance Your System Performance: A Complete Guide to Windows 11 Update
- 13 Step-by-Step Tutorial for Managing Windows 11 Update Successfully
- 14 when next steam sale
- 15 Mastering Windows 11 Update: Tips for a Hassle-Free System Upgrade
Latest Tutorials
-
- Go language practical GraphQL
- 2925 2024-04-19
-
- 550W fan master learns JavaScript from scratch step by step
- 4273 2024-04-18
-
- Getting Started with MySQL (Teacher mosh)
- 2307 2024-04-07
-
- Mock.js | Axios.js | Json | Ajax--Ten days of quality class
- 3052 2024-03-29
As we all know, the so-called "no-refresh application" based on AJAX generally refers to the use of XmlHttp components in WEB applications to achieve certain non-refresh page switching based on JavaScript background asynchronous data transmission to replace the traditional "refresh-free" application based on HTML links. Refresh" page switch.
This kind of non-refresh effect is really cool, but after trying it for some time, thinking developers will find the biggest problem: since I have no refresh, then for a set of non-refresh functions, that is, from opening Starting from the web page, all effects are asynchronously calling XmlHttp through JavaScript in the background of the current page to transfer data and replace the display content in the current page. There is no traditional "with refresh" page switching. However, if in a certain state, the page pauses loading due to network problems and needs to be refreshed manually, or the user wants to manually refresh the current page to obtain updated data, or even accidentally presses "F5" or the What happens to the Refresh button? By the way, this is the worry raised by the title of this article. If there is no special processing, then after manually refreshing the page, the content on the web page will naturally return to the originally displayed content, instead of the data we really want before manually refreshing. Did you suddenly feel depressed again? :) No need~~
