私はこの特定のテストについて何時間も頭を悩ませてきました。実証されたディレクティブは機能していると思いますが、isolate スコープに渡される値が未定義になっています。
コード:
html
<!doctype html>
<html ng-app="myApp">
<body>
<a ng-href="#" class="test-scope" name="test">Console should say 'test' but gives undefined</a>
</body>
</html>
JavaScript
angular.module('myApp', [])
.directive('testScope', function() {
return {
restrict: 'C',
scope: {
name: "="
},
link: function(scope, element, attrs) {
console.log(scope.name);
}
};
});
これがフィドルです:http://jsfiddle.net/jPtb3/8/
私は何か間違ったことをしているに違いありません。