4
angularJS: Üst kapsamda çocuk kapsam işlevi nasıl çağırılır
Alt kapsamda tanımlanan bir yöntemi üst kapsamından nasıl çağırabilirim? function ParentCntl() { // I want to call the $scope.get here } function ChildCntl($scope) { $scope.get = function() { return "LOL"; } } http://jsfiddle.net/wUPdW/