$scope.fn1 = function(){ //do something A }; $scope.fn2 = function(){ //do something B //I want to call fn1 here. };
如果我的fn2想调用fn1,我该怎么办?谢谢!