0
我是angularjs的新手。我想從運行塊調用控制器功能。如何從angularjs中的run塊調用控制器函數
出頭,如: -
//index.html
.
.
<li class="nav-sap"><a ng-click="loadSfData(5)" href="">Sf</a></li>
.
.
//app.js
myApp.run(['$rootScope', function ($rootScope) {
$rootScope.callFunctionFromGlobally=function(sid){
//Here, i want call controller function
}
}]);