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

相关内容

热门资讯

交流学习经验!大玩家福建十三水... 交流学习经验!大玩家福建十三水辅助(透视)蜀山四川破解版ios(详细开挂外开挂教程)1、实时大玩家福...
一分钟揭秘!逗娱碰胡辅助器(透... 一分钟揭秘!逗娱碰胡辅助器(透视)新九哥开挂(详细开挂外开挂教程)亲,关键说明,逗娱碰胡辅助器赛季回...
教学盘点!邳州友友辅助软件下载... 教学盘点!邳州友友辅助软件下载(透视)闲逸辅助神器免费(详细开挂外开挂教程)1、上手简单,内置详细流...
分享给玩家!闲聚鱼虾蟹软件脚本... 分享给玩家!闲聚鱼虾蟹软件脚本辅助器(透视)新超凡辅助(详细开挂外开挂教程);闲聚鱼虾蟹软件脚本辅助...
科技揭秘!嘟咪互动修改器(透视... 科技揭秘!嘟咪互动修改器(透视)情怀辅助哪里可以装(详细开挂外开挂教程)情怀辅助哪里可以装辅助器中分...
信息共享!拱趴大菠萝攻略(透视... 信息共享!拱趴大菠萝攻略(透视)新二号辅助(详细开挂外开挂教程)拱趴大菠萝攻略辅助器中分为三种模型:...
玩家必看!微信小程序功夫川辅助... 玩家必看!微信小程序功夫川辅助(透视)哈糖大菠萝提高胜率(详细开挂外开挂教程);玩家必看!微信小程序...
一分钟了解!!微乐家乡游戏攻略... 一分钟了解!!微乐家乡游戏攻略(透视)杭州都莱辅助软件有没有用(详细开挂外开挂教程)1、杭州都莱辅助...
必看攻略!518互游破解(透视... 必看攻略!518互游破解(透视)决战卡五星作弊(详细开挂外开挂教程)1、全新机制【决战卡五星作弊软件...
玩家实测!闲逸亲友圈app辅助... 玩家实测!闲逸亲友圈app辅助(透视)衢州都莱辅助器下载(详细开挂外开挂教程)1、构建自己的衢州都莱...