如何使用APP_BOOTSTRAP_LISTENER获取对引导组件的引用?

时间:2017-01-11 03:27:09

标签: angular

Angular 2 API参考说明了以下关于APP_BOOTSTRAP_LISTENER变量:

Variable Export export APP_BOOTSTRAP_LISTENER

All callbacks provided via this token will be called for every component that is
bootstrapped. Signature of the callback:

(componentRef: ComponentRef) => void.

从这个描述中,听起来我可以以某种方式注册一个回调函数,该函数允许我获取对页面上每个引导组件的引用。我希望能够这样做,所以我可以从任何Angular代码之外设置组件的属性。我是否正确地解释了这个描述,如果我正确地解释它,我该如何注册我的回调函数?

1 个答案:

答案 0 :(得分:1)

这是一个令牌,您可以在其中为每个引导组件调用函数:

 <canvas id="canvas" width="60" height="60"></canvas>