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.
1 parent b3ff84d commit e747dbaCopy full SHA for e747dba
src/abpHttp.ts
@@ -271,6 +271,10 @@ export class AbpHttp extends Http {
271
if (!options.headers) {
272
options.headers = new Headers();
273
}
274
+
275
+ options.headers.append("Pragma","no-cache");
276
+ options.headers.append("Cache-Control","no-cache");
277
+ options.headers.append("If-Modified-Since", "Wed, 21 Oct 2020 07:28:00 GMT");
278
279
this.addXRequestedWithHeader(options);
280
this.addAuthorizationHeaders(options);
@@ -329,4 +333,4 @@ export class AbpHttp extends Http {
329
333
330
334
return false;
331
335
332
-}
336
+}
0 commit comments