実行中にスコープまたはコントローラーを挿入することは可能ですか? またはコントローラにサービスを動的に注入するためのその他のアドバイスはありますか?
Application.controller('IndexController', function($scope){
// some actions
if(someconditions) {
$scope.$inject = [someServiceName];
// and here i want to use service methods
}
});
前もって感謝します