Use Meta to cancel the traffic cache to refresh the page every time you visit it for easy debugging

Use Meta to cancel the traffic cache to refresh the page every time you visit it for easy debugging

Copy code
The code is as follows:

<!-- Prevent the browser from accessing pages from the local cache. -->
<meta http-equiv="pragram" content="no-cache">
<!--The web page is not saved in the cache and is refreshed every time it is visited. -->
<meta http-equiv="cache-control" content="no-cache, must-revalidate">
<!--Same as above, you must reload the page-->
<meta http-equiv="expires" content="0">
<!--The expiration time of the web page in the cache is 0. Once the web page expires, it must be re-subscribed from the server-->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<<:  Login interface implemented by html+css3

>>:  JavaScript to achieve balance digital scrolling effect

Recommend

The easiest way to make a program run automatically at startup in Linux

I collected a lot of them, but all ended in failu...

【HTML element】Detailed explanation of tag text

1. Use basic text elements to mark up content Fir...

Detailed explanation of the buffer pool in MySQL

Everyone knows that data in MySQL needs to be wri...

How to install Docker on Windows Server 2016

Recently Microsoft released Windows Server 2016, ...

MySQL uses the Partition function to implement horizontal partitioning strategy

Table of contents 1 Review 2 Five strategies for ...

How to use cc.follow for camera tracking in CocosCreator

Cocos Creator version: 2.3.4 Demo download: https...

CSS float property diagram float property details

Using the CSS float property correctly can become...

A brief discussion on the magic of parseInt() in JavaScript

cause The reason for writing this blog is that I ...

JavaScript DOMContentLoaded event case study

DOMContentLoaded Event Literally, it fires after ...

MySQL concurrency control principle knowledge points

Mysql is a mainstream open source relational data...

Analysis of the principle of Vue nextTick

Table of contents Event Loop miscroTask (microtas...

Take you to understand the event scheduler EVENT in MySQL

The event scheduler in MySQL, EVENT, is also call...

Detailed explanation of JavaScript onblur and onfocus events

In HTML pages, visual elements such as buttons an...

DOM operation table example (DOM creates table)

1. Create a table using HTML tags: Copy code The ...

In-depth analysis of the slow query problem of MySQL Sending data

Through an example, I shared with you the solutio...