这是我的应用程序配置:
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>
问题是角度将指令渲染为:
你好,未定义
代替:
你好世界
怎么了?