我希望从另一个模块以及窗口对象访问Angular 2组件。窗口对象仅用于在浏览器控制台中播放而不是实际用于生产(fyi)。我以为我可以'导出默认类MyComponent',但这似乎不起作用。我如何从另一个模块/窗口访问实例化的MyAppComponent类?
<body>
<my-app></my-app>
<script>
System.import('ang').then(function (ang) {
window.ang = ang;
});
</script>
</body>
...
import {Component, View, bootstrap} from 'angular2/angular2';
@Component({
selector: 'my-app'
})
@View({
template: `<h1>Hello {{ count }}</h1><br>`
})
class MyAppComponent {
public count: number;
constructor() {
this.count = 0;
}
public increment(): void {
this.count++;
}
}
bootstrap(MyAppComponent);
然后想做这样的事情:
ang.increment();
答案 0 :(得分:1)
这是另一个解决方案,它利用了一些Angular内部结构。我可以验证它是否可以在Angular 6中使用,但是当然要注意YMMV。
也一文不值,TypeScript对此并不满意,因此在我的代码中,我不得不在这里和那里进行转换。为了清楚起见,我在这里删除了强制类型转换。
const debugElement: DebugElement = window.ng.probe(document.querySelector('my-app'))
const app: MyAppComponent = debugElement.componentInstance;
app.increment();
答案 1 :(得分:0)
你可以通过bootstrap回调来做到这一点:
bootstrap(AppComponent, [
ROUTER_PROVIDERS,
]).then((app)=> {
window.app = app
});
然后从控制台调用
app.instance.myMethod()
答案 2 :(得分:0)
使组件成为全局变量
constructor() {
window['AppComponent'] = {Appcomponent: {all:this}};
}