使用异步管道订阅对象的属性

发布于 2025-01-10 22:28:12 字数 740 浏览 0 评论 0原文

以这种方式订阅对象的属性有什么缺点吗:

    <th [attr.colspan]="(headerColSpan$ | async).aaa">...</th>
    <th [attr.colspan]="(headerColSpan$ | async).bbb" >...</th>
    <th [attr.colspan]="(headerColSpan$ | async).ccc">...</th>
    <th [attr.colspan]="(headerColSpan$ | async).ddd" >...</th>
    this.headerColSpan$ = new Observable((subscriber) => {
    subscriber.next(this.headerColspan);
    });

    this.headerColspan = {aaa: 2, bbb: 3, ccc: 1, ddd: 5};

这似乎是如何工作的,但我不确定它在如何使用 RxJS 的意义上是否正确。

另一种方法是创建四个BehaviorSubjects。每个 colspan 一个。

出于某种原因,这样会更好吗?

Are there any downsides to subscribe to properties of an object this way:

    <th [attr.colspan]="(headerColSpan$ | async).aaa">...</th>
    <th [attr.colspan]="(headerColSpan$ | async).bbb" >...</th>
    <th [attr.colspan]="(headerColSpan$ | async).ccc">...</th>
    <th [attr.colspan]="(headerColSpan$ | async).ddd" >...</th>
    this.headerColSpan$ = new Observable((subscriber) => {
    subscriber.next(this.headerColspan);
    });

    this.headerColspan = {aaa: 2, bbb: 3, ccc: 1, ddd: 5};

This is how it seems to work, but I'm not sure if it's correct in the sense of how RxJS should be used.

The alternative would be to make four BehaviorSubjects. One for each colspan.

Would that be better for any reason?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

素食主义者 2025-01-17 22:28:12

您可以使用 async 管道一次,并将其结果分配给模板变量,然后使用它来访问您需要的属性,如下所示:

<ng-container *ngIf="headerColSpan$ | async as headerColSpan">
  <th [attr.colspan]="headerColSpan.aaa">...</th>
  <th [attr.colspan]="headerColSpan.bbb">...</th>
  <th [attr.colspan]="headerColSpan.ccc">...</th>
  <th [attr.colspan]="headerColSpan.ddd">...</th>
</ng-container>

You can use the async pipe once, and assign its result to a template variable, then use it to access the properties you need, like the following:

<ng-container *ngIf="headerColSpan$ | async as headerColSpan">
  <th [attr.colspan]="headerColSpan.aaa">...</th>
  <th [attr.colspan]="headerColSpan.bbb">...</th>
  <th [attr.colspan]="headerColSpan.ccc">...</th>
  <th [attr.colspan]="headerColSpan.ddd">...</th>
</ng-container>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文