A brief analysis of whether using iframe to call a page will cache the page

A brief analysis of whether using iframe to call a page will cache the page
Recently, I have a project that requires using iframe to call a page that changes every day. Later, I wondered whether iframe would cache the page, so I wrote a demo to demonstrate it. The result is as follows:

If the src of the iframe is a static page, it may be cached because static pages have 200 and 304 status codes.
If the src of the iframe is a dynamic page, it will not be cached, because dynamic pages are all 200 status
If the src of the iframe is a pseudo-static page, it is necessary to analyze whether the pseudo-static page will have a 304 status. If so, it will be cached.

I hope this helps others who encounter the same problem.

<<:  JS ES new features template string

>>:  Add unlimited fonts to your website with Google Web Fonts

Recommend

Detailed explanation of Vue's caching method example

Recently, a new requirement "front-end cache...

Use CSS to achieve circular wave effect

I often see some circular wave graphics on mobile...

JavaScript using Ckeditor + Ckfinder file upload case detailed explanation

Table of contents 1. Preparation 2. Decompression...

How to use Linux commands in IDEA

Compared with Windows system, Linux system provid...

How to operate json fields in MySQL

MySQL 5.7.8 introduced the json field. This type ...

Should the Like function use MySQL or Redis?

Table of contents 1. Common mistakes made by begi...

Example of using CSS filter to write mouse over effect

Use CSS filter to write mouse over effect <div...

Several ways to schedule backup of MySQL database (comprehensive)

Table of contents 1. mysqldump command to back up...

Implementation of MySQL scheduled backup script under Windows

On a Windows server, if you want to back up datab...

Windows 10 is too difficult to use. How to customize your Ubuntu?

Author | Editor Awen | Produced by Tu Min | CSDN ...

MySQL 8.0.17 installation and usage tutorial diagram

Written in front In the past and in the current p...

Use of MySQL DDL statements

Preface The language classification of SQL mainly...