我有以下代码:
app.controller('MatrixExpertCtrl', function($scope,$http){
$scope.PassedMatrix=[];
$scope.GetMatrixFromServer=function(){
$http.get("http://localhost:3000/getmatrixfromdb").success(function(resp){
alert("The matrix grabbed from the server is: " + resp[0].ans);
$scope.PassedMatrix.push(resp[0].ans);
});
};
$scope.DispSize=function(){
alert("testing");
alert("The size is "+$scope.PassedMatrix[0].size) ;
};
//$scope.GetMatrixFromServer();
});
现在,假设在 HTML 中,我有这样的东西:
<div class="col-sm-3 col-md-3 col-lg-3">
<div class="text-center">
<h3>Example Survey</h3>
<p>example paragrah</p>
<p>More random text</p>
<p>ending the paragraphs</p>
<button id="updmat" ng-click="DispSize();" type="button" class="btn btn-default">Updates</button>
</div>
//Much more code
<div id="body2">
<div class="col-sm-6 col-md-6 col-lg-6" style="background-color:#ecf0f1;">
<div ng-controller="MatrixExpertCtrl" ng-app="app" data-ng-init="GetMatrixFromServer()">
<div class="text-center">
意思是:
是否可以从同一控制器范围之外调用在控制器内部定义的函数?
我需要这个,因为该函数正在以非常简单的方式操作控制器拥有的共享对象(例如,单击按钮会更改给定元素的颜色)。
我无法完成这项工作,任何帮助将不胜感激。
我认为将一些数据结构声明为全局将有助于我解决这个问题,但是,我想避免这样做,因为除了这是不好的做法之外,它可能会在未来给我带来更多问题。