4
angularJS : 부모 범위에서 자식 범위 함수를 호출하는 방법
부모 범위에서 자식 범위에 정의 된 메서드를 어떻게 호출 할 수 있습니까? function ParentCntl() { // I want to call the $scope.get here } function ChildCntl($scope) { $scope.get = function() { return "LOL"; } } http://jsfiddle.net/wUPdW/