angularjs ng-style: background-image isn't working

后端 未结 8 1134
一整个雨季
一整个雨季 2020-12-12 20:38

I\'m trying to apply a background image to a div by using the angular ng-style ( I tried a custom directive before with the same behaviour ), but it doesn\'t se

8条回答
  •  [愿得一人]
    2020-12-12 20:41

    This worked for me, curly braces are not required.

    ng-style="{'background-image':'url(../../../app/img/notification/'+notification.icon+'.png)'}"
    

    notification.icon here is scope variable.

提交回复
热议问题