tag
の値に基づいてタイトルタグのテキストを変更しようとしていdirection
ます:
<li ng-repeat="t in tags">
<div class="tag"
ng-class="{'green-up': t.direction == 'positive',
'red-down': t.direction == 'negative',
'' : t.direction == 'stagnant'}"
title="Percentage increase"
ng-if="">{{t.name}}</div>
</li>
方向はpositive
、negative
またはstagnant
のいずれかで、対応するか、title="Percentage increase"
title="Percentage decrease"
またはtitle="Percentage"
この場合、どのAngular構文を使用するのが最適ですか?