我似乎无法使用控制器来设置 div 的 CSS 背景属性。到目前为止,这是我的代码,根据文档:
HTML:
<div class="hero" ng-controller="HeroCtrl" ng-style="heroImage"></div>
JS:
'use strict';
angular.module('AppliedSiteApp').controller('HeroCtrl', function ($scope) {
$scope.heroImage = {
background: 'images/brick.jpg'
};
console.log($scope.heroImage);
});
CSS:
.hero {
width: 100%;
min-height: 350px;
background-position: center center;
}
我还尝试在此处的小提琴中复制此设置。有没有人有任何想法?