我有两个网页。第一个允许用户更改教师所属的部门。来自按钮的操作调用发送所需php
命令的SQL
文件,并将信息正确添加到SQL
数据库。
然后第二个显示两个下拉框。选择部门后,第二个下拉列表会列出该部门的教师。
要获取此数据,请使用:
<script type="text/javascript">
function checkTeacherList(departmentName, schoolName)
{
var xmlhttp;
if (departmentName=="All")
{
// document.getElementById("departmentTeachers").innerHTML="";
$("#departmentTeachers").hide(0);
$("#allTeacherList").show(0);
return;
}
else
{
$("#departmentTeachers").show(0);
$("#allTeacherList").hide(0);
}
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("departmentTeachers").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","http://localhost/iobserve/php/getTeachers.php?schoolName="+schoolName+"&departmentName="+departmentName,true);
xmlhttp.send();
如果我从第一页添加教师到部门,如果我手动删除Internet临时文件,则只显示在第二页中。
我意识到旧数据正在被缓存,但我不确定如何强制重新加载以便正确显示数据?
答案 0 :(得分:2)
一种方法是将随机值附加到查询字符串,如当前时间
var d = new Date();
xmlhttp.open("GET","http://localhost/iobserve/php/getTeachers.php?schoolName="+schoolName+"&departmentName="+departmentName+"&nocache="+d.getSeconds(),true);
xmlhttp.send();
或设置标题
xmlhttp.setRequestHeader("If-Modified-Since", "Sat, 1 Jan 2005 00:00:00 GMT");
或在服务器端设置缓存标头
header("Expires: Sat, 1 Jan 2005 00:00:00 GMT");
header("Last-Modified: ".gmdate( "D, d M Y H:i:s")."GMT");
header("Cache-Control: no-cache, must-revalidate");
header("Pragma: no-cache");