1

我们在工作中使用融合图表,他们使用 xml 来设置图表的数据和样式

我们不想缓存任何数据,因为它可能很敏感。这在除 Firefox 之外的所有浏览器中都很好...

为什么只有Firefox在这样做,我们怎样才能让它停止!??

为什么人们仍然坚持使用FLASH!?!?万事万物?!

4

1 回答 1

0

试试这个停止缓存

chart1.setDataURL(escape("xmlfile.xml?currTime=" + getTimeForURL()));
/**
  * getTimeForURL method returns the current time 
  * in a URL friendly format, so that it can be appended to
  * dataURL for effective non-caching.
*/
 function getTimeForURL(){
 var dt = new Date();
 var strOutput = "";
 strOutput = dt.getHours() + "_" + dt.getMinutes() + "_" + dt.getSeconds() + "_" +    dt.getMilliseconds();
  return strOutput;
 }
于 2013-02-03T10:17:06.453 回答