我想做一个条件,当图像src未找到时它将显示默认图像
任何人都可以解决吗?
答案 0 :(得分:1)
尝试这种方式
<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'">