使用img的onerror事件來繫結圖片異常時的處理

weixin_43257526發表於2020-12-03

當使用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)">

相關文章