dateFilter란 무엇이며 자세한 내용은 어디에서 확인할 수 있습니까? 지시사항에 대한 Angular 문서 http://docs.angularjs.org/guide/directive 를 검토하고 있습니다. 페이지의 예시 중 하나(여기 http://jsbin.com/osOQOYag/3/edit?html,js,output 에서 전체 작동 예시) angular.module('docsTimeDirective', []) .controller('Ctrl2', function($scope) { $scope.format = 'M/d/yy h:mm:ss a'; }) .directive('myCurrentTime', function($interval, dateFilter) { function link(scope, el..