변수는 angular.에서 접근할 수 없습니다. 각각에 대해 서비스가 있습니다. app.service('myService', function() { this.list = []; this.execute = function() { //this.list is reachable here angular.forEach(AnArrayHere, function(val, key) { //this.list is not reachable here }); } } 컨트롤러에서도 접근이 가능합니다. function Ctrl($scope, myService) { $scope.list = myService.list; } 누가 각도 내에서 "this.list"에 연결할 수 없는 이유를 설명해 줄 수 있습니까?각각에 대해 그리고 "th..