简体   繁体   中英

How to make condition when image src 404 not found in angular

I want to make a condition when the image src wasnt found it will display the default image

anyone can slove this ?

Try this way

<img style="max-height: 170px; width: 100%; border-radius: 0px !important; min-height: 170px;"
        *ngIf="obj.urlToImage != null" src={{obj.urlToImage}}
        onError="this.src='../../assets/images/defaultnews.png'">

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM