gpt4 book ai didi

Angular 订阅 API 返回的数据

转载 作者:太空狗 更新时间:2023-10-29 18:28:41 26 4
gpt4 key购买 nike

我正在尝试清理我的 Ionic 应用程序并将冗余功能移至提供程序中。下面是我的大多数 API 函数的示例(除了为简洁起见,我删除了很多不相关的内容)并且它们运行良好。

getDataFromApi() {
....
Promise.all([
...
]).then((result) => {
let headers = new Headers();
...
let body = new FormData();
...
this.http.post(url, body, headers)
.map(res => res.json())
.subscribe(data => {
if (data == '{}') {
this.mydata = [];
} else {
this.mydata = data;
}
}, error => { });
});
}

所以我所做的就是将函数移到提供程序中并像这样更改它

getDataFromApi() {
....
Promise.all([
...
]).then((result) => {
let headers = new Headers();
...
let body = new FormData();
...
return this.http.post(url, body, headers));
});
}

然后在页面的构造函数中我这样调用它

this.service.getDataFromApi()
.map(res => res.json())
.subscribe(data => {
if (data == '{}') {
this.mydata = [];
} else {
this.mydata = data;
}
}, error => { });

显然那是行不通的。我已经将 SO 帖子倾注了 2 天,也无法让其他人的示例和答案正常工作。我已经尝试在提供者中进行映射并在页面中调用它时进行订阅,但无论我尝试什么,都会不断收到错误。我知道此函数正在返回数据,因为我可以在将其移至提供程序之前看到它。

我做错了什么?

最佳答案

我认为最重要的是保持一致;您可以使用 promises 或仅可观察对象(而不是混合使用两者)来完成所有这些操作。

请看 this stackblitz demo 您可以在其中了解如何仅使用可观察对象发出类似的 HTTP 请求,以及仅使用 promise 发出完全相同的请求。


使用可观察对象

您可以将 switchMap(或任何其他扁平化运算符)与 fromPromise 一起使用,以来自您的提供商的相同方法处理所有这些:

// Angular
import { Injectable } from '@angular/core';
import { HttpClient } from '@angular/common/http';

// RxJS
// Please notice that this demo uses the 5.5.2 version
import { Observable } from 'rxjs/Observable';
import { map } from 'rxjs/operators/map';
import { tap } from 'rxjs/operators/tap';
import { switchMap } from 'rxjs/operators/switchMap';

// ...

// Get a list of 5 users using observables
public getDataUsingObservables(): Observable<any> {
const promises = Promise.all([
this.somePromise('getDataUsingObservables', 1),
this.somePromise('getDataUsingObservables', 2)
]);

return fromPromise(promises)
.pipe(
switchMap(results => {
console.log(`[getDataUsingObservables]: Both promises are finished`);
const url = `https://randomuser.me/api/?results=5`;

return this.http.get<any>(url);
}),
tap(res => {
console.log(`[getDataUsingObservables]: The http request is finished`);
})
);
}

// Return a promise with the number sent as parameter
private somePromise(callerMethod: string, aNumber: number): Promise<number> {
console.log(`[${callerMethod}]: About to create a promise with the number ${aNumber}`);
return Promise.resolve(aNumber);
}

然后你会像这样使用它:

this.dataService.getDataUsingObservables().subscribe(
response => {
this.responseUsingObservables = response;
},
error => {
// Handle the error...
alert(error);
});

使用 promise

如果要使用 promise,可以使用 toPromise() 运算符将 observable 转换为 promise:

// Angular
import { Injectable } from '@angular/core';
import { HttpClient } from '@angular/common/http';

// RxJS
// Please notice that this demo uses the 5.5.2 version
import { tap } from 'rxjs/operators/tap';

// ...

// Get a list of 5 users using promises
public getDataUsingPromises(): Promise<any> {
const promises = Promise.all([
this.somePromise('getDataUsingPromises', 1),
this.somePromise('getDataUsingPromises', 2)
]);

return promises
.then(results => {
console.log(`[getDataUsingPromises]: Both promises are finished`);
const url = `https://randomuser.me/api/?results=5`;

return this.http.get<any>(url)
.pipe(
tap(res => {
console.log(`[getDataUsingPromises]: The http request is finished`);
})
)
.toPromise();
});
}

// Return a promise with the number sent as parameter
private somePromise(callerMethod: string, aNumber: number): Promise<number> {
console.log(`[${callerMethod}]: About to create a promise with the number ${aNumber}`);
return Promise.resolve(aNumber);
}

然后你会像这样使用它:

this.dataService.getDataUsingPromises()
.then(response => {
this.responseUsingPromises = response;
})
.catch(error => {
// Handle the error...
alert(error);
});

关于Angular 订阅 API 返回的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52558481/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com