Это мое приложение config:
angular.module('myApp', ['myApp.directives', 'myApp.controllers', 'myApp.services']);
Это мой контроллер:
angular.module('myApp.controllers', [])
.controller('MainCtrl', function ($scope) {
$scope.name = 'world';
});
Это моя директива:
var directives = angular.module('myApp.directives', []);
directives.directive("hello", function () {
return function (scope, elm, attrs) {
elm.text("hello, " + scope[attrs.name]);
};
});
и это мой html:
<div ng-controller="MainCtrl">
<h1 hello></h1>
</div>
Проблема заключается в том, что angular отображает директиву как:
привет, undefined
Вместо:
привет, мир
Что не так?