简体   繁体   中英

how to set backgroundImage of DIV using angular response.data

I used to set the background image of a div with a get request like so:

style="background-image:url('/api/image')"

Now I want to do an $http request in Angular, get the image from response.data, and then set it like so:

document.getElementById("img").style.backgroundImage = response.data;

Your controllers should have no knowledge of your DOM. You should be attaching the data to your $scope and then applying it in your view.

$scope.imagePath = response.data;

and in your view.

<span id="img" style="background-image:url('{{imagePath}}')"></span>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM