gpt4 book ai didi

javascript - 如何在html中实现异步管道,但在返回数据时仍然能够调用函数

转载 作者:行者123 更新时间:2023-12-03 01:00:30 25 4
gpt4 key购买 nike

我已经在 Angular 5 中实现了一个异步管道。它按预期工作,但我希望能够在从后端返回数据时调用一些函数并分配变量(即设置 SEO 详细信息、广告定位等)

在不使用异步管道的情况下,我像这样调用了服务:

    this._dataService.send(new BrochureRequest(this._stateService.params.propertyId)).subscribe((httpResponse) => {
this.httpResponse$ = httpResponse;
// do more stuff
});

但是,使用异步管道,我看不到如何选择对 typescript 中的返回数据执行任何操作。

这就是我实现异步管道的方式:

typescript

this.httpResponse$ = this._dataService
.send(new BrochureRequest(this._stateService.params.Id));

html

 <div *ngIf="httpResponse$ | async as httpResponse; else loading">
{{httpResponse | json}}
</div>

<ng-template #loading>
loading ...
</ng-template>

有什么想法吗?

最佳答案

使用点击运算符

The tap operator is useful for side effects or changes that don’t relate directly to the returned value of the Observable

this.httpResponse$ = this._dataService
.send(new BrochureRequest(this._stateService.params.Id)).pipe(tap(data=> console.log(data)));

关于javascript - 如何在html中实现异步管道,但在返回数据时仍然能够调用函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52646249/

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