ng-repeat 내부의 지시문 사용 및 범위 '@'의 신비한 힘 작업 코드에서 질문을 보려면 여기에서 시작하십시오. http://jsbin.com/ayigub/2/edit 간단한 direcive를 작성하는 거의 동일한 방법을 고려하십시오. app.directive("drinkShortcut", function() { return { scope: { flavor: '@'}, template: '{{flavor}}' }; }); app.directive("drinkLonghand", function() { return { scope: {}, template: '{{flavor}}', link: function(scope, element, attrs) { scope.flavor = attrs.flavor; ..