템플릿에 Angular Directive 특성 사용 지시문에서 속성 값을 사용하려면 어떻게 해야 합니까?내 요소는 다음과 같습니다. 다음과 같은 지시문 템플릿에 사용하고 싶습니다. mainApp.directive('myTooltip', function() { // allowed event listeners var allowedListeners = ["click"]; return { restrict: 'A', template: '...' + '' + '...', link: function(scope, elm, attrs) { if(allowedListeners.indexOf(attrs.myTooltip) != -1){ elm.bind(attrs.myTooltip, function(){ ... }); } }..