Angular异步管道对图像源更新无效。
创始人
2024-10-30 12:00:13
0

问题描述: 在Angular应用中,使用异步管道来加载图像源时,图像源的更新可能无效。

解决方法:

  1. 使用管道的纯函数版本: 在管道中使用纯函数版本,确保输入和输出的值都是不可变的。这样即使图像源发生变化,管道也会正确地更新。
@Pipe({
  name: 'asyncImage'
})
export class AsyncImagePipe implements PipeTransform {
  transform(source: string | null): SafeUrl | null {
    return source ? this.sanitizer.bypassSecurityTrustUrl(source) : null;
  }
}
  1. 使用管道的非纯函数版本: 如果管道中的变量不是不可变的,可以使用管道的非纯函数版本。这样,每次检测时都会重新计算管道的输出值。
@Pipe({
  name: 'asyncImage',
  pure: false
})
export class AsyncImagePipe implements PipeTransform, OnDestroy {
  private sourceSubscription: Subscription | null = null;
  private latestSource: string | null = null;
  private latestSafeUrl: SafeUrl | null = null;

  constructor(private sanitizer: DomSanitizer) {}

  transform(source: string | null): SafeUrl | null {
    if (source !== this.latestSource) {
      this.latestSource = source;
      if (this.sourceSubscription) {
        this.sourceSubscription.unsubscribe();
        this.sourceSubscription = null;
      }
      this.latestSafeUrl = null;
      if (source) {
        this.sourceSubscription = this.loadImage(source).subscribe(url => {
          this.latestSafeUrl = this.sanitizer.bypassSecurityTrustUrl(url);
        });
      }
    }
    return this.latestSafeUrl;
  }

  ngOnDestroy() {
    if (this.sourceSubscription) {
      this.sourceSubscription.unsubscribe();
    }
  }

  private loadImage(source: string): Observable {
    return new Observable(observer => {
      const image = new Image();
      image.onload = () => {
        observer.next(source);
        observer.complete();
      };
      image.src = source;
    });
  }
}

这两种方法都可以解决Angular异步管道在图像源更新时无效的问题。具体使用哪一种方法取决于你的应用需求和具体情况。

相关内容

热门资讯

透视代打!吉祥填大坑插件,德州... 您好:这款德州辅助工具到底怎么样游戏是可以开挂的,确实是有挂的,很多玩家在这款德州辅助工具到底怎么样...
透视脚本!顺欣茶楼辅助软件视频... 透视脚本!顺欣茶楼辅助软件视频,如何下载德普之星辅助软件(辅助挂)详细开挂辅助软件;亲,如何下载德普...
透视存在!指尖四川小程序辅助器... 指尖四川小程序辅助器是一款专注玩家量身打造的游戏记牌类型软件,在指尖四川小程序辅助器这款游戏中我们可...
透明神器!wepoker辅助是... 透明神器!wepoker辅助是真的假的,wepoker黑侠破解(辅助挂)详细开挂辅助挂;无需打开直接...
透视能赢!wepoker好友房... 透视能赢!wepoker好友房开挂,aapoker辅助插件工具(辅助挂)详细开挂辅助神器;无需打开直...
透视辅助!八张透视辅助,aap... 大家好,今天小编来为大家解答aapoker辅助器怎么用这个问题咨询软件客服可以免费测试直接加微信(1...
透视app!广西友乐解码器下载... 透视app!广西友乐解码器下载安装,aapoker公共底牌(辅助挂)详细开挂辅助挂;无需打开直接搜索...
透明新版!潮汕掌上娱游戏透视软... 透明新版!潮汕掌上娱游戏透视软件,约局吧开挂(辅助挂)详细开挂辅助下载;无需打开直接搜索薇:1367...
透明神器!财神十三章有哪些辅助... 透明神器!财神十三章有哪些辅助功能,hhpkoer辅助器(辅助挂)详细开挂辅助神器1、下载安装好财神...
透视辅助!随意玩怎么创建聚乐部... 透视辅助!随意玩怎么创建聚乐部,德普之星透视辅助软件激活码(辅助挂)详细开挂辅助安装这是一款可以让一...