我想使用 AngularJS 4 从 API 流式传输数据。当我第一次调用 API 时没有数据,但最终将在 15 - 30 秒内返回更多结果。
这是我的组件:
export class ResultsComponent implements OnInit {
results: Results;
constructor(
private searchService: SearchService,
private route: ActivatedRoute
) {}
ngOnInit(): void {
this.route.params
.switchMap((params: Params) =>
this.searchService.getResultsObservable(params['searchKey']))
.subscribe(data => { this.results = data; });
}
这是我的服务电话:
我正在使用上面的 Observable 调用,但我也包含了 Promise 调用。
getResults(searchKey: string): Promise<Results> {
const url = `${this.apiUrl}/${searchKey}/0`;
return this.http.get(url)
.toPromise()
.then(response => response.json() || {})
.catch(this.handleError);
}
getResultsObservable(searchKey: string): Observable<Results> {
const url = `${this.apiUrl}/${searchKey}/0`;
return this.http
.get(url)
.map(response => response.json() || {});
}
我相信我需要使用 Observable 调用,但我不确定我需要如何处理组件内的调用。