1

I have the following:

<img data-ng-src="{{image.Url}}" alt="" />

I need the value in data-ng-src to be different according to a condition.

If image.IsAdvert is true then:

data-ng-src="{{image.Url}}"

if the image.IsAdvert is false then

data-ng-src="file/{{image.Url}}"

How can I do this?

Miguel Moura
  • 32,822
  • 74
  • 219
  • 400

2 Answers2

10

Use conditional operator:-

<img ng-src="{{image.isAdvert?image.Url:('file/' + image.Url)}}"/>
squiroid
  • 13,519
  • 5
  • 45
  • 67
7

You could return it from a function on the scope:

data-ng-src="{{getUrl(image)}}"

and

$scope.getUrl = function(image){
  return image.isAdvert ? image.Url : "file/" + image.Url;
}
PSL
  • 122,084
  • 19
  • 250
  • 241