지시문의 scope.$watch가 AJAX 요청 후에 호출되지 않았습니다. 다음과 같은 지시가 있습니다. MyApp.directive('myFilter', ['$filter','$rootScope', function($filter, $rootScope) { var dir = {}; dir.restrict = 'E'; dir.templateUrl = 'views/myFilter.html'; dir.replace = true; dir.scope = { name: '@', model: '=', }; dir.link = function(scope,el,attrs) { //stuff here } return dir; }]); 호출 방법은 다음과 같습니다. 디렉티브가 처음 초기화되면someField비어 있습니다.나..