커스텀 디렉티브의 ng-change 구현 방법 이런 템플릿이 있는 지시가 있어요 내 지시사항은 다음과 같이 선언됩니다. return { templateUrl: '...', restrict: 'E', require: '^ngModel', scope: { items: '=', ngModel: '=', ngChange: '&' }, link: function postLink(scope, element, attrs) { scope.updateModel = function(item) { scope.ngModel = item; scope.ngChange(); } } } 나는 가지고 싶다ng-change항목이 클릭되고 값이 지정되면 호출됩니다.foo는 이미 변경되었습니다. 즉, 내 지시가 다음과 같이 구현되는 경우:..