angularjs – 在同一个Controller Angular Js中将函数调用到另一个函数中

前端之家收集整理的这篇文章主要介绍了angularjs – 在同一个Controller Angular Js中将函数调用到另一个函数中前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是新手使用 angularjs,我已经在控制器中声明了两个函数,现在我想将一个函数用于另一个函数我该怎么做
意味着如果我将函数名称称为另一个函数,则表示未定义.

这是代码

'use strict';
angular.module('customer').controller('Controller',['$scope','$state','Sservice',function($scope,$state,Sservice) {

    var that = this;

    (function getDetails() {
        //IMPLEMENTATION
    }());

    this.function2 = function function2 (id){
        //implementation
      getDetails(); // says undefined
    };
  }
]);
.controller('SampleController',function($scope){
$scope.funcA = function(){
   $scope.funcB();//scope level function
   funcC(); //non scope level function``
}
$scope.funcB = function(){
}
var funcC = function(){
}
});
原文链接:https://www.f2er.com/angularjs/141599.html

猜你在找的Angularjs相关文章