Angular。如果object值为null,如何在图片的title属性中隐藏数据?

Angular. How to hide data in the title attribute of the image if the object value is null?

我知道 ng-show/ng-hide 可以使用,但这种情况有点不同。这是我下面的脚本。基本上我想做的是在标题标签中 'info.peak' 值为空的情况下隐藏单词 "PEAK" 。我需要创建此图片标签的两个版本吗?一个有和没有 'peak'?如果显示我也该怎么做?

<img 
class="icon lazyloaded"  
data-ng-src="{{ info.image }}" 
alt="{{ info.title }}"  
title="Last Week: {{ info.lastweek}}  Move: {{ info.move }} Peak: {{ info.peak }}" 
width="100" 
height="100"> 

您可以使用以下方法执行此操作:

{{ info.peak ? 'Peak: ' + info.peak : '' }}

代替 Peak: {{ info.peak }}。因此,如果 info.peak 不 exist/is null,它只会在末尾附加一个空字符串。