如何在我的JavaScript文件中加載JSON文件,並確保如果我在用戶查看我的網站時更新JSON文件,它將始終使用最新版本,而不是使用緩存版本?在JavaScript中加載json數據文件並避免緩存
說,在我的javascript我打開一個文件,該文件是這樣的JSON數據文件:
// Create a <script> tag and set the USGS URL as the source.
var script = document.createElement('script');
// This example uses a local copy of the GeoJSON stored at
// http://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/2.5_week.geojsonp
script.src = 'https://developers.google.com/maps/documentation/javascript/examples/json/earthquake_GeoJSONP.js';
document.getElementsByTagName('head')[0].appendChild(script);
如果遠程文件的變化,我怎麼能保證它總是加載最新版本的文件,而不是由瀏覽器緩存?
你是否控制託管javascript文件的服務器? –