从 window.object 访问 angular NgZone 实例

Access angular NgZone instance from window.object

是否可以不访问 angular(2+) ZoneJS 实例 (NgZone) 注入 它在 constructor 中像这样:

...

 const zone = window['<angular zonejs path in window object>']
...

现在,当我开发 angular 库时,我需要这样做:

class Test {
 constructor( zone: NgZone ) { initmyplugin(zone); }
}

但我不想让用户关心 NgZone 的初始化。

您可以使用以下代码获取 NgZone 实例:

ng.probe(getAllAngularRootElements()[0]).injector.get(ng.coreTokens.NgZone)

另见