我正在编写一个Angular SPA应用程序,该应用程序使用HttpClient从后端获取值。
告诉它不缓存的简单方法是什么?我第一次要求它获取值,然后它拒绝进行后续查询。
谢谢, 格里
答案 0 :(得分:5)
<meta http-equiv="cache-control" content="no-cache, must-revalidate, post-check=0, pre-check=0">
<meta http-equiv="expires" content="0">
<meta http-equiv="pragma" content="no-cache">
或
在headers
请求中添加http
为:-
headers = new Headers({
'Cache-Control': 'no-cache, no-store, must-revalidate, post-
check=0, pre-check=0',
'Pragma': 'no-cache',
'Expires': '0'
});
答案 1 :(得分:1)
如何在URL中加盐:
const salt = (new Date()).getTime();
return this.httpClient.get(`${url}?${salt}`, { responseType: 'text' });
相同的概念用于html(css或js)中的静态资源链接来欺骗缓存。向URL中添加动态盐会导致每次都重新加载目标,因为URL每次都不同,但实际上是相同的。
/static/some-file.css?{some-random-symbols}
我之所以使用日期,是因为它保证了我的唯一编号,而没有使用随机性,依此类推。我们也可以为每个调用使用递增整数。
在无法更改服务器配置的情况下,上面提供的代码对我来说很好用。
答案 2 :(得分:0)
HTTPInterceptor是修改应用程序中发生的HTTP请求的好方法。它充当可注入服务,可以在HttpRequest发生时调用。
HTTP拦截器:
import { Injectable } from '@angular/core';
import { HttpInterceptor, HttpRequest, HttpHandler, HttpHeaders } from '@angular/common/http';
@Injectable()
export class CacheInterceptor implements HttpInterceptor {
intercept(req: HttpRequest<any>, next: HttpHandler) {
const httpRequest = req.clone({
headers: new HttpHeaders({
'Cache-Control': 'no-cache',
'Pragma': 'no-cache',
'Expires': 'Sat, 01 Jan 2000 00:00:00 GMT'
})
});
return next.handle(httpRequest);
}
}
使用拦截器:
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule } from '@angular/forms';
import { AppComponent } from './app.component';
import { HttpClientModule, HTTP_INTERCEPTORS } from '@angular/common/http';
import { CacheInterceptor } from './http-interceptors/cache-interceptor';
@NgModule({
imports: [ BrowserModule, FormsModule ],
declarations: [ AppComponent ],
bootstrap: [ AppComponent ],
providers: [
{ provide: HTTP_INTERCEPTORS, useClass: CacheInterceptor, multi: true }
]
})
export class AppModule { }
答案 3 :(得分:-1)
正如Pramod回答的那样,您可以使用http请求拦截器修改或设置请求的新标头。 以下是在HTTP请求拦截器上为以后的Angular版本( Angular 4 + )设置标头的简单得多的方法。这种方法只会设置或更新某个请求标头。这是为了避免删除或覆盖一些重要的标头,例如授权标头。
// cache-interceptor.service.ts
import { Injectable } from '@angular/core';
import {
HttpInterceptor,
HttpRequest,
HttpHandler,
} from '@angular/common/http';
@Injectable()
export class CacheInterceptor implements HttpInterceptor {
intercept(req: HttpRequest<any>, next: HttpHandler) {
const httpRequest = req.clone({
headers: req.headers
.set('Cache-Control', 'no-cache')
.set('Pragma', 'no-cache')
.set('Expires', 'Sat, 01 Jan 2000 00:00:00 GMT')
})
return next.handle(httpRequest)
}
}
// app.module.ts
import { HttpClientModule, HTTP_INTERCEPTORS } from '@angular/common/http'
import { CacheInterceptor } from './cache-interceptor.service';
// on providers
providers: [{ provide: HTTP_INTERCEPTORS, useClass: CacheInterceptor, multi: true }]