いくつかのデータを取得し、入力に基づいてスコープ変数を変更する Angular ディレクティブを作成しようとしていますが、動作させることができません。
これが私のJSの簡略版です:
var module = angular.module('myapp', []);
module.directive('checkDirective', function() {
return {
restrict: 'E',
scope: { line: '@' },
transclude: true,
controller: function($scope) {
$scope.newLine = $scope.line;
},
template: '<div ng-transclude></div>'
};
});
そして、ここに私のHTMLがあります:
<div ng-app="myapp">
0
<check-directive line="...">
a{{line}}b{{newLine}}c
</check-directive>
1
</div>
それのためのフィドルはここにあります: http://jsfiddle.net/k66Za/60/
どんな助けでも大歓迎です!