JavaScriptファイル内にJSONファイルをロードするにはどうしたらよいですか?ユーザーが自分のウェブサイトを表示したときにJSONファイルを更新すると、キャッシュされたバージョンを使用しましたか?jsonデータファイルをjavascriptにロードしてキャッシングを避ける
セイ私の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ファイルをホストするサーバーを制御していますか? –