欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Ajax中要注意的问题

程序员文章站 2022-04-14 11:59:00
ajax调用的返回数据会被缓存,调用静态html ,即使把html修改了,ie依有可能然用原来的数据显示。 而firefox可以正常显示新的数据。&nb...
ajax调用的返回数据会被缓存,调用静态html ,即使把html修改了,ie依有可能然用原来的数据显示。 而firefox可以正常显示新的数据。 

解决办法:

prototype的get中,设置

pars = "mod=readarticle&fid='+$f('fid')+'&rand='+math.random();
使用java提供的方法设置http头信息,在jsp或者servlet中都可以 
response.setheader("pragma","no-cache"); 
response.setheader("cache-control","no-cache"); 
response.setdateheader("expires", 0); 
使用html标记,如下: 
<head> 
<meta http-equiv="pragma" content="no-cache"> 
<meta http-equiv="cache-control" content="no-cache"> 
<meta http-equiv="expires" content="0"> 
</head>