用img的onerror事件来绑定图片异常时的处理

570 阅读1分钟

当使用img的onerror事件来绑定图片异常时的处理时,在angular可以使用`

  • omponent.ts
onImgError(event){
 event.target.src = './assets/imgs/altImg.png'
//Do other stuff with the event.target
}
  • component.html

 <img [src]="imgUrl" (error)="onImgError($event)">