why are my component bindings undefined in its controller 3f

Solutions on MaxInterview for why are my component bindings undefined in its controller 3f by the best coders in the world

showing results for - "why are my component bindings undefined in its controller 3f"
Kris
22 Apr 2018
1When using angular's components, there is a point where the controller hasn't been wired up via the internal linking. If you're trying to do this in the constructor of your controller, you haven't been linked to the bindings. The Component API exposes a few life-cycle hooks that you can define that will fire at certain times. You're looking for the $onInit hook.