角指令用于备用图片(Angular directive for a fallback image)

2019-09-01 19:59发布

如果一个单独的服务器上的图像不存在,我想显示的默认图像。 是否有一个角指令来完成这项工作?

Answer 1:

没有,但你可以创建一个。

http://jsfiddle.net/FdKKf/

HTML:

<img fallback-src="http://google.com/favicon.ico" ng-src="{{image}}"/>

JS:

myApp.directive('fallbackSrc', function () {
  var fallbackSrc = {
    link: function postLink(scope, iElement, iAttrs) {
      iElement.bind('error', function() {
        angular.element(this).attr("src", iAttrs.fallbackSrc);
      });
    }
   }
   return fallbackSrc;
});


Answer 2:

是否有一个角指令......

http://ngmodules.org/modules/angular-img-fallback

Github上: https://github.com/dcohenb/angular-img-fallback

(32分截至目前)



Answer 3:

我写我自己的后备库。

一个非常简单的和直接的角回退图像LIB:

https://github.com/alvarojoao/angular-image-fallback

实用与加载图像和处理图像错误的工作,具有图像持有人来处理图像加载和图像加载的图像加载占位符错误

http://alvarojoao.github.io/angular-image-fallback

用法

就在图像属性添加到您<img />标签

<img image="{{'path/to/img.jpg'}}" />

确保您不使用ng-src作为图像src属性。

高级选项

定制备用和负荷占位符:

<img image="{{image.url}}" image-loading="/image/loading.gif" 
     image-holder="/image/error.png" />

例:

https://jsfiddle.net/alvarojoao/4wec4gsq/embedded/result/



Answer 4:

Angualr 2版

https://github.com/VadimDez/ng2-img-fallback

HTML

<img fallback-src="http://google.com/favicon.ico" src="http://google.com/failedImage.png"/>

角2组件

import { Directive, ElementRef, Input } from '@angular/core';

@Directive({
  selector: '[fallback-src]'
})
export class FallbackSrc {

  @Input('fallback-src') imgSrc: string;
  private el: HTMLElement;
  private isApplied: boolean = false;
  private EVENT_TYPE: string = 'error';

  constructor(el: ElementRef) {
    this.el = el.nativeElement;
    this.el.addEventListener(this.EVENT_TYPE, this.onError.bind(this))
  }

  private onError() {
    this.removeEvents();

    if (!this.isApplied) {
      this.isApplied = true;
      this.el.setAttribute('src', this.imgSrc);
    }
  }

  private removeEvents() {
    this.el.removeEventListener(this.EVENT_TYPE, this.onError);
  }

  ngOnDestroy() {
    this.removeEvents();
  }
}


文章来源: Angular directive for a fallback image