We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Just including io.bust activates it.
io.bust
See How to include for more details. See bust for the full documentation.
var req = io.get({ url: 'abc', bust: true }); // generates following url: abc?io-bust=1470185125354-507943
var req = io.get({ url: 'abc', bust: 'xyz' }); // generates following url: abc?xyz=1470185125354-507943
var req = io.get({ url: 'abc', bust: true }, {a: 1}); // generates following url: abc?a=1&io-bust=1470185125354-507943
var req = io.post({ url: 'abc', bust: true }, {a: 1}); // generates following url: abc?io-bust=1470185125354-507943 // the payload {a: 1} is sent as a body