search
HomeWeb Front-endH5 TutorialHTML5 offline application solution to create a zero-request, no-traffic website_html5 tutorial skills

Foreword

Today's Web applications are already very complex. With current development, they will become more and more complex. However, they have a fatal flaw, which is that they cannot be disconnected from the Internet. Therefore, a new API has been added to HTML,

It uses a local storage mechanism to solve this problem well, paving the way for offline web applications.
Local cache in browser cache

Copy the code
The code is as follows:

The local cache serves the entire web application
The browser cache only serves a single web page

Any webpage has a webpage cache
The local cache only caches those pages that you specify to cache

Web page caching is unreliable and unsafe because we don’t know which pages and resources are cached in the website
Local caching can control what content is cached


manifest file

The local cache of web applications is managed through the manifest file of each page. The manifest is a simple text in which the names and paths of files that need to be cached and do not need to be cached are listed in the form of a list. .

The manifest can be specified individually for each page or for the entire application. For example, our settings for hello.htm:

Copy code
The code is as follows:

CACHE MANIFEST
CACHE:
other.html
hellow.js
images/myphoto.jpg
NETWORK :
http://LuLinniu/NotOffline
NotOffline.asp
*
FALLBACK:
online.js locale.js
CACHE:
newhellow.html
newhellow .js

In the manifest file, the first line must be CACHE MANIFEST to tell the browser the role of the text, that is, to make specific settings for the resource files in the local cache.
When you actually run an offline web application at the same time, you need to configure the server so that the server supports the text/cache-manifest mime type.

When specifying file source files, resource files can be divided into three categories, CACHE, NETWORK, and FALLBACK

Copy code
The code is as follows:

Specify resource files that need to be cached locally in the CACHE category. When specifying resource files that need to be cached locally for a certain page, you do not need to specify the page itself in the CACHE category,
because if a page With a manifest file, the browser will automatically cache the page locally

The NETWORK category is resource files that are explicitly specified not to be cached. These files can only be accessed by establishing a server-side link. In this example, the wildcard * is used to indicate that those that are not recorded will not be cached

Each line in the FALLBACK category specifies two resource files. The first resource file is the resource file used when it can be accessed online, and the second is the local cache file used when it cannot be accessed online


The interaction process between the browser and the server

When working with offline web applications, it is necessary to understand the interaction process between the browser and the server:

Copy code
The code is as follows:

For example, http://LuLingniu, with index.htm as the homepage, the homepage uses index.manifest,
caches index.htm in the file, hello.js, hello.jpg, the process for the first visit is as follows:
The browser requests the url
The server returns the index.htm homepage
The browser parses the index.htm web page and requests all resource files on the page
The server returns the resource file
. The browser processes the manifest file and requests the file that needs to be cached in the manifest. Even if it has been requested, it will request it again
. The server returns the file that needs to be cached.
The browser updates the local cache and saves it. Resource files and trigger an event to notify local cache updates

Open the URL again
Request url
The browser finds that the page is cached, so it uses the local cache file
to parse the file
The browser requests the manifest file from the server
and the server returns 304, Notify that the manifest file has not changed (it will be different if it changes)


applicationCache object

This object represents the local cache, which can be used to notify the user that the local cache has been updated, and also allows manual updating of the local cache.

When the browser updates the local cache and loads a new resource file, the updateready event of the applicationCache object will be triggered, notifying that the local cache has been modified, and then prompting the user to manually refresh the page.
swapCache

The swapCache method is used to manually perform local cache updates. It can only be called when the updateReady event of the applicationCache object is triggered,

That is, when the resource file changes, you can use this method to manually cache the update.

Statement
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
H5 Code: Writing Clean and Efficient HTML5H5 Code: Writing Clean and Efficient HTML5Apr 20, 2025 am 12:06 AM

How to write clean and efficient HTML5 code? The answer is to avoid common mistakes by semanticizing tags, structured code, performance optimization and avoiding common mistakes. 1. Use semantic tags such as, etc. to improve code readability and SEO effect. 2. Keep the code structured and readable, using appropriate indentation and comments. 3. Optimize performance by reducing unnecessary tags, using CDN and compressing code. 4. Avoid common mistakes, such as the tag not closed, and ensure the validity of the code.

H5: How It Enhances User Experience on the WebH5: How It Enhances User Experience on the WebApr 19, 2025 am 12:08 AM

H5 improves web user experience with multimedia support, offline storage and performance optimization. 1) Multimedia support: H5 and elements simplify development and improve user experience. 2) Offline storage: WebStorage and IndexedDB allow offline use to improve the experience. 3) Performance optimization: WebWorkers and elements optimize performance to reduce bandwidth consumption.

Deconstructing H5 Code: Tags, Elements, and AttributesDeconstructing H5 Code: Tags, Elements, and AttributesApr 18, 2025 am 12:06 AM

HTML5 code consists of tags, elements and attributes: 1. The tag defines the content type and is surrounded by angle brackets, such as. 2. Elements are composed of start tags, contents and end tags, such as contents. 3. Attributes define key-value pairs in the start tag, enhance functions, such as. These are the basic units for building web structure.

Understanding H5 Code: The Fundamentals of HTML5Understanding H5 Code: The Fundamentals of HTML5Apr 17, 2025 am 12:08 AM

HTML5 is a key technology for building modern web pages, providing many new elements and features. 1. HTML5 introduces semantic elements such as, , etc., which enhances web page structure and SEO. 2. Support multimedia elements and embed media without plug-ins. 3. Forms enhance new input types and verification properties, simplifying the verification process. 4. Offer offline and local storage functions to improve web page performance and user experience.

H5 Code: Best Practices for Web DevelopersH5 Code: Best Practices for Web DevelopersApr 16, 2025 am 12:14 AM

Best practices for H5 code include: 1. Use correct DOCTYPE declarations and character encoding; 2. Use semantic tags; 3. Reduce HTTP requests; 4. Use asynchronous loading; 5. Optimize images. These practices can improve the efficiency, maintainability and user experience of web pages.

H5: The Evolution of Web Standards and TechnologiesH5: The Evolution of Web Standards and TechnologiesApr 15, 2025 am 12:12 AM

Web standards and technologies have evolved from HTML4, CSS2 and simple JavaScript to date and have undergone significant developments. 1) HTML5 introduces APIs such as Canvas and WebStorage, which enhances the complexity and interactivity of web applications. 2) CSS3 adds animation and transition functions to make the page more effective. 3) JavaScript improves development efficiency and code readability through modern syntax of Node.js and ES6, such as arrow functions and classes. These changes have promoted the development of performance optimization and best practices of web applications.

Is H5 a Shorthand for HTML5? Exploring the DetailsIs H5 a Shorthand for HTML5? Exploring the DetailsApr 14, 2025 am 12:05 AM

H5 is not just the abbreviation of HTML5, it represents a wider modern web development technology ecosystem: 1. H5 includes HTML5, CSS3, JavaScript and related APIs and technologies; 2. It provides a richer, interactive and smooth user experience, and can run seamlessly on multiple devices; 3. Using the H5 technology stack, you can create responsive web pages and complex interactive functions.

H5 and HTML5: Commonly Used Terms in Web DevelopmentH5 and HTML5: Commonly Used Terms in Web DevelopmentApr 13, 2025 am 12:01 AM

H5 and HTML5 refer to the same thing, namely HTML5. HTML5 is the fifth version of HTML, bringing new features such as semantic tags, multimedia support, canvas and graphics, offline storage and local storage, improving the expressiveness and interactivity of web pages.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft