我遇到ngsrc的问题,因为我无法发现为什么我的图像在从控制器调用时没有显示...我的代码看起来像这样:
<!DOCTYPE html>
<html lang="en" ng-app="myApp">
<head>
<meta charset="UTF-8">
<title>Testing</title>
</head>
<body>
<div class="container" ng-controller="createProfileCtrl">
<div><img class="img-circle" ng-src="{{profilePicture}}" alt="placeholder"></div>
</div>
</body>
</html>
我的javascript代码如下所示:
var chApp = angular.module('myApp', [])
.controller('createProfileCtrl', ['$scope', function($scope) {
$scope.profilePicture = '/images/background.jpg'
}]);
我在图像文件夹中添加了图像,但我仍然没有在视图中获得结果(html)