我仍然对rxjs如何工作感到困惑。
我正在构建一个向我的服务器发出请求的Ionic应用程序,并期待json。我已经成功订阅了http.post并获取了我需要的数据。
但是现在我的问题是我需要在http请求中传递一个auth令牌,这是我从Storage获得的。这是一个问题,因为我需要等到存储准备就绪,然后在调用http.post请求之前从中获取我的令牌值。
这是我试图获取我的json数据的地方
getPlanograms() {
//API URL
let requestURL = 'https://myapiurlhere';
let headers = new Headers({'Content-Type': 'application/json'});
return this.storage.ready().then(() => {
return this.storage.get('id_token').then((val) => {
headers.append('Authorization', 'Bearer ' + this.authCredentials.token);
let options = new RequestOptions({headers: headers});
return this.http.post(requestURL, {}, options)
.map(response => <Planogram[]>response.json());
})
});
}
从这里调用
ionViewDidLoad (){
this.merchandisingDataService.getPlanograms()
.subscribe(Planogram => this.planograms = Planogram);
}
但是,当我尝试这样做时,我收到以下错误
属性'subscribe'在'Promise'类型中不存在。
实现目标的最佳方式是什么?
答案 0 :(得分:8)
您可以通过更改以下内容.then()
消费:
ionViewDidLoad () {
this.merchandisingDataService.getPlanograms()
.then(Planogram => this.planograms = Planogram);
}
或者,您可以getPlanograms
返回Observable
。
getPlanograms() {
// API URL
let requestURL = 'https://myapiurlhere';
let headers = new Headers({'Content-Type': 'application/json'});
// this converts from promise to observable
return Observable.fromPromise(this.storage.ready()
.then(() => this.storage.get('id_token'))
.then((val) => {
headers.append('Authorization', 'Bearer ' + this.authCredentials.token);
let options = new RequestOptions({headers: headers});
return this.http.post(requestURL, {}, options)
// map converts from observable to promise
// (returned by response.json())
.map(response => <Planogram[]>response.json());
});
}));
}
现在您可以像问题一样使用.subscribe()
消费。
答案 1 :(得分:1)
根据caffinatedmonkey的建议,我最终得到了这个功能:
getPlanograms() {
//API URL
let requestURL = 'https://myapiurlhere';
return Observable
.fromPromise(this.storage.get('id_token'))
.flatMap(token =>{
let headers = new Headers({'Content-Type': 'application/json'});
headers.append('Authorization', 'Bearer ' + token);
let options = new RequestOptions({headers: headers});
return this.http.get(requestURL, options)
.map(response => <Planogram[]>response.json())
.catch(this.handleError);
}
);
}
答案 2 :(得分:0)
此答案的 2020 / 2021 版本如下,RequestOptions
已弃用,Observable.fromPromise
现在是简单的 from
,flatMap
现在是 mergeMap
和你必须pipe
到mergeMap:
依赖项/导入:
import { Observable, throwError, of, from } from 'rxjs';
import { map, catchError, mergeMap } from 'rxjs/operators';
import { HttpClient, HttpHeaders, HttpErrorResponse } from '@angular/common/http';
功能:
listProducts(){
return from(this.storage.get('token'))
.pipe(mergeMap(token =>{
const headers = new HttpHeaders().append('Content-Type', 'application/json').append('Authorization', 'Bearer ' + token);
return this.http.get(`${url}`, { headers: headers })
}
));
}