I was doing testing work today and found a problem that puzzled me. The getJson method of jquery can get the returned result when running on firefox, but when tested on ie8, I found that it was not sent. request, so I couldn't get any returned results. After going through many twists and turns, I found the solution in an online article, so I excerpted it and made some modifications.
1 Make the url different for each call
Method: Add one to the parameter random number.
Example 1:
jQuery.getJSON("$!{Root}/a/a/s.ashx",{ID:"123456",Name: "john",random:Math.random()},function(responseText){}
Example 2:
"xxx.aspx?randID="+Math .random
Example 3:
"xxx.aspx?randID="+ escape(new Date())
2 will cache is set to False
$.ajax does notcacheversion:
$.ajax({ type:"GET" url:'test.html' , cache:false, dataType:"html", success:function(msg){ alert(msg); } });
3. Add the following statement at the top of the labels.html file:
4.loadFunction can not only call HTML, but also call script, such as labels.php, you can use the header function in the php file :
header("Cache-Control: no-cache, must-revalidate");
?>
5 Use post instead of get method.
You need to use Post method Note:
Set the Context-Type of the header to application/x-www-form-urlencode to ensure that the server knows that there are parameters in the entity Variables. Usually use XmlHttpRequestObjectSetRequestHeader("Context-Type","application/x-www-
form-urlencoded;").
Example: xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
Parameters are key-value pairs with one-to-one name/value correspondence. Each pair of values is separated by an ampersand. For example, var name=abc&sex=man&age=18, pay attention to var name=update. The writing methods of php?abc&sex=man&age=18 and var name=?abc&sex=man&age=18 are both wrong;
The parameters are in the Send (parameter) method Send, for example: xmlHttp.send(name); If it is the get method, directly xmlHttp.send(null);Server sideRequest parametersDistinguish between Get and Post. $username = $_GET["username"]; If it is post mode, then $username = $_POST["username"];
6 Add header("Cache- Control: no-cache, must-reva lidate");
7 Add before sending ajax request
xmlHttpRequest.setRequestHeader("If-Modified-Since","0");
8 Add before ajax sends the request
xmlHttpRequest.setRequestHeader("Cache-Control","no-cache");
The above is the detailed content of Several methods to solve the caching problem of jQuery.getJSON. For more information, please follow other related articles on the PHP Chinese website!

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

foreach不是es6的方法。foreach是es3中一个遍历数组的方法,可以调用数组的每个元素,并将元素传给回调函数进行处理,语法“array.forEach(function(当前元素,索引,数组){...})”;该方法不处理空数组。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Zend Studio 13.0.1
Powerful PHP integrated development environment

Notepad++7.3.1
Easy-to-use and free code editor

Atom editor mac version download
The most popular open source editor

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

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.
