Skip to content

Instantly share code, notes, and snippets.

@furenku
Created June 30, 2018 17:21
Show Gist options
  • Save furenku/8f4f0b166a9bbb0cfb74866efc79446c to your computer and use it in GitHub Desktop.
Save furenku/8f4f0b166a9bbb0cfb74866efc79446c to your computer and use it in GitHub Desktop.
fetch sin cache
var fetchHeaders = new Headers();
fetchHeaders.append('pragma', 'no-cache');
fetchHeaders.append('cache-control', 'no-cache');
var fetchInit = {
method: 'GET',
headers: fetchHeaders,
};
fetch('maquetas/article.html', fetchInit)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment