The easiest way is to append the source string with some random parameter, which gets ignored on the server side
<script src="mySaveFiles.json?nocache=123" ></script>
One solution would be to generate the script element using JavaScript and append the current time like this:
var el = document.createElement( script );
el.src = 'mySaveFiles.json?nocache=' + (new Date()).getTime();
document.head.appendChild( el );
That way, the browser will never cache the JSON-file as it appears to be a different file (due to the parameter) in every call.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…