0
我使用CSV2Table插件:CSV2TableCSV2Table似乎是緩存結果 - 我該如何阻止它?
HTML頁面的正文是:
<body onload="JavaScript:timedRefresh();">
<div id="CSVTable"></div>
</body>
的TimedRefresh腳本是:
<script type="text/JavaScript">
function timedRefresh() {
setInterval(function(){
ref()},30000);
</script>
到CSV加載到腳本DIV是:
<script type="text/javascript">
function ref(){
$('#CSVTable').CSVToTable('q.csv', { loadingImage: 'images/loading.gif', startLine: 0, tableClass:'table table-condensed table-striped table-bordered table-hover' }).bind("loadComplete",function() {
$('#CSVTable').find('TABLE').tablesorter().tableClass('table table-condensed');
});
</script>
概率lem是,雖然調用了ref,但CSV2Table似乎在緩存結果 - 而不是重新讀取CSV文件(該文件在其他地方動態更新)。
有沒有辦法阻止在CSV2Table上發生緩存?我試過Google搜索,但無法找到它的緩存設置!
感謝您的幫助,
馬克