gpt4 book ai didi

javascript - 为什么 'toPromise()' 对我不起作用

转载 作者:行者123 更新时间:2023-11-30 11:15:38 26 4
gpt4 key购买 nike

我用代码示例解释了我的问题

我有以下服务:

@Injectable()
export class PartidoProvider extends MyFirestoreProvider<Partido> {

constructor( public http: HttpClient,
public firestore: AngularFirestore) {
super('partidos', http, firestore);
}

buscarPartido ( jugador1: Jugador, jugador2: Jugador ) : Observable<Partido[]> {
let partidoGanaJugador1: Partido = new Partido();
let partidoPierdeJugador1: Partido = new Partido();

partidoGanaJugador1.jugadorGanador = jugador1.idDoc;
partidoGanaJugador1.jugadorPerdedor = jugador2.idDoc;

partidoPierdeJugador1.jugadorGanador = jugador2.idDoc;
partidoPierdeJugador1.jugadorPerdedor = jugador1.idDoc;

return Observable.zip( this.get(partidoGanaJugador1),
this.get(partidoPierdeJugador1),
(listaGanados, listaPerdidos) => {
return listaGanados.concat(listaPerdidos);
});
}

我需要从一个组件调用转换为 promise 的服务,以便稍后使用 await 等待数据返回,以便管理在另一个实体中的注册。

接下来我将展示调用服务的测试代码:

  async enviarResultado(){
let rival: Jugador;
let jugador: Jugador = this.authProvider.jugador;
let nombreRival: string;
let partido: Partido;
// Obtener partido del calendario para añadirle el resultado
nombreRival = this.myForm.controls['rival'].value;
rival = this.rivales.find( rival => rival.nombre == nombreRival);

// THIS WORKS
const sample = val => Observable.of(val).delay(5000);
const example = sample('First Example').toPromise().then(result => {
console.log('From Promise:', result);
});

// THIS WORKS
this.partidoProvider.buscarPartido(jugador, rival).subscribe(
resultado => {
console.log("El subscribe ha devuelto datos");
console.log(resultado);
},
error => {
console.error("Se ha producido un error al intentar buscar el partido para modificar el resultado")
}
);

// THIS DOESN'T WORK only 1 appears in the debug console (console.log ("1"))
console.log("1");
this.partidoProvider.buscarPartido(jugador, rival).toPromise()
.then( lista => {
console.log("2");
console.log("Promesa entra");
console.log("data:" + lista);
if ( lista && lista.length > 0){
partido = lista[0]
}
})
.catch( error => {
console.log("2");
console.error("Se ha producido un error al intentar buscar el partido para modificar el resultado")
});

有没有人知道哪里出了问题?

非常感谢您

最佳答案

当使用 toPromise() 时,您需要确保源 Observables 完成。

Observables 可以发出多个值,因此 toPromise() 无法知道最后一个值是什么以及何时应该解析它返回的 Promise。

所以我的猜测是使用 this.get(...) 创建的源 Observables 之一永远不会完成。也许您想使用类似这样的东西 Observable.zip(...).take(1)

关于javascript - 为什么 'toPromise()' 对我不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51707844/

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