AngularJS 지시:링크 기능과 컴파일 기능은 함께 작동합니까? 이 기능에 대해 몇 가지 의문이 있습니다. 예를 들어 다음과 같은 지시가 있다고 합시다. .directive('hello', function () { return { template: 'Hello ', restrict: 'E', transclude: true, compile: function() { console.log('Compile()'); return { pre: function() { console.log('PreLink()'); }, post: function() { console.log('PostLink()'); } }; }, link: function postLink(scope, element, attrs) { console..