AngularJS : 디렉티브에서의 최소화 문제 나는 아직 최소화에 대한 또 다른 문제가 있다.이번에는 명령어 컨트롤러에 $scope 서비스가 전달되었기 때문입니다.아래 코드 참조: angular.module('person.directives'). directive("person", ['$dialog', function($dialog) { return { restrict: "E", templateUrl: "person/views/person.html", replace: true, scope: { myPerson: '=' }, controller: function ($scope) { $scope.test = 3; } } }]); 컨트롤러 부분을 코멘트하면 정상적으로 동작합니다. 보시다시피 디렉티브에 어레이..