1

我有两个网页。第一个允许用户更改教师所属的部门。按钮的操作调用php发送所需SQL命令的文件,并将信息正确添加到SQL数据库中。

第一页

第二个然后显示两个下拉框。选择部门后,第二个下拉列表会列出该部门的教师。

网页2

要获取此数据,我使用:

<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 临时文件时才会显示在第二页中。

我意识到旧数据正在被缓存,但我不确定如何强制重新加载以便正确显示数据?

4

1 回答 1

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");

控制缓存

于 2013-07-26T10:52:49.673 回答