有没有办法自动注入$scope
中的依赖项(或解决方案),而无需手动将其附加到$scope
?
(有或没有UI-Router)
“controllerAs”语法会有任何帮助吗?
.config(['$stateProvider',
function($stateProvider) {
$stateProvider
.state('test', {
url: '/test',
templateUrl: 'test.tpl.html',
controller: 'TestCtrl',
})
;
}
])
.controller('TestCtrl', ['$scope', 'myService',
function($scope, $rootScope, accruals, myService) {
$scope.myService= myService; // how can I avoid this every time ?
}
])
由于