I currently display a scope variable using the following code
<a data-ng-href="#!/params/{{first.second.status}}">{{first.second.status}}</a>
Sometimes first.second.status is null, undefined or empty in which case I want to display "None" instead of actual value(empty)
One of the way to achieve the above is to put the check for the value of first.second.status in the controller and change its value accordingly but is there a more elegant way of doing it?
Just do:
{{first.second.status || "None"}}
You could do:
<a ng-if="first.second.status"
data-ng-href="#!/params/{{first.second.status}}">{{first.second.status}}</a>
<span ng-if="!first.second.status">None</span>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With