📜  为什么我的组件绑定在其控制器中未定义? - 打字稿代码示例

📅  最后修改于: 2022-03-11 14:48:21.548000             🧑  作者: Mango

代码示例1
When 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.