您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
在Angular中,可以通过Angular的HttpClient模块和服务工作台配合实现缓存外部资源的功能。以下是一种实现方式:
import { Injectable } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { Observable } from 'rxjs';
import { shareReplay } from 'rxjs/operators';
@Injectable({
providedIn: 'root'
})
export class CacheService {
private cache: Map<string, Observable<any>> = new Map();
constructor(private http: HttpClient) { }
public get(url: string): Observable<any> {
if (!this.cache.has(url)) {
this.cache.set(url, this.http.get(url).pipe(shareReplay(1)));
}
return this.cache.get(url);
}
}
import { Component, OnInit } from '@angular/core';
import { CacheService } from './cache.service';
@Component({
selector: 'app-example',
template: `
<div *ngIf="data$ | async as data">
{{ data | json }}
</div>
`
})
export class ExampleComponent implements OnInit {
data$: Observable<any>;
constructor(private cacheService: CacheService) { }
ngOnInit(): void {
const url = 'https://api.example.com/data';
this.data$ = this.cacheService.get(url);
}
}
在上面的例子中,CacheService服务会缓存每个URL的响应数据,下次再请求相同的URL时,直接返回缓存的数据,而不会再次发起请求。这样可以减少对外部资源的请求次数,并提高应用的性能。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。