Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Simple one I hope..

Here's a plunker for reference.

I know how to specify a dependency at compile-time (see MainCtrlInjected controller). But how do I pull down a dependency at runtime, giving the name of that dependency? (see MainCtrlInjectedRuntime controller)

share|improve this question

2 Answers

up vote 4 down vote accepted

You can use $injector to get your value at runtime:

Check my forked plunker: http://plnkr.co/edit/iVblEU?p=preview

Code:

app.controller('MainCtrlInjectedRuntime', [
  '$scope',
  '$injector'
  ($scope, $injector) ->

   nameValHandle = 'nameVal'

   # !!! This is how you inject at runtime
   name = $injector.get(nameValHandle)

   $scope.name = name
])
share|improve this answer
Hey, that was easy, thanks! – Roy Truelove Dec 5 '12 at 15:28

I am just getting into angularjs, but I believe the appropriate way to handle this situation would be to inject a service into MainCtrlInjectedRuntime. The injected service would have your somehowGetNameFromValue method.

share|improve this answer
You're right for dependency names that are known at compile time, but sometimes at runtime this comes in handy. What I'm using it for is, in a directive, I'm setting an attribute to the name of a 'value' dependency that helps configure the directive. In my directive I resolve the dependency dynamically. – Roy Truelove Dec 6 '12 at 13:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.