在浏览器中阻止REST调用的HTTP缓存可以通过以下几种方式实现:
https://api.example.com/data?timestamp=1612345678
var xhr = new XMLHttpRequest();
xhr.open('GET', 'https://api.example.com/data', true);
xhr.setRequestHeader('Cache-Control', 'no-cache');
xhr.setRequestHeader('Pragma', 'no-cache');
xhr.setRequestHeader('Expires', '0');
xhr.send();
领取专属 10元无门槛券
手把手带您无忧上云