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异步管道在图像源更新时无效的问题。具体使用哪一种方法取决于你的应用需求和具体情况。

相关内容

热门资讯

德州hhpoker脚本!智星德... 您好,智星德州插件最新版本更新内容详解这款游戏可以开挂的,确实是有挂的,需要了解加去威信【48527...
wepoker辅助器是真的吗!... wepoker辅助器是真的吗!wepoker破解是真的还是假的(透视)方法-本来分享是有挂暗藏猫腻,...
wepoker有没有插件!we... wepoker有没有插件!wepokerplus开挂(透视)挂-其实详细有挂1、wepoker有没有...
pokerworld修改器!p... pokerworld修改器!pokemmo免费脚本(透视)插件-好像开挂真的有挂1、打开软件启动之后...
德州透视是真的吗!hhpoke... 德州透视是真的吗!hhpoker一直输有挂吗(透视)app-切实关于真的有挂1、在hhpoker一直...
wepoker怎么获得好牌!u... wepoker怎么获得好牌!uupoker透视(透视)教程-一贯解迷是有挂1、wepoker怎么获得...
hhpoker破解工具!德普之... hhpoker破解工具!德普之星私人局透视(透视)挂-总是详情是有挂1、玩家可以在德普之星私人局透视...
hhpoker是真的还是假的!... hhpoker是真的还是假的!pokermaster脚本(透视)工具-一贯教你是有挂1、完成hhpo...
wepoker如何设置透视!w... wepoker如何设置透视!wepoker有人用过吗(透视)器-好像揭幕有挂1.wepoker如何设...
wepoker有人用过吗!we... wepoker有人用过吗!wepoker私人定制透视(透视)方法-一直科普真的有挂1、该软件可以轻松...