可能我错过了一些关于变更检测的 Angular2 概念。
我读过关于 NgZones 和 ChangeDetectionStrategy 但似乎没有一个能解决我的问题。
情况是我有一个外部模块,我在其中存储我的 Observables 并在某些组件中使用它们,当其中一个组件将某些内容更改为服务时,它会传播到其他组件。
我写了一个 Plunker 来帮助表达我的问题
http://plnkr.co/edit/ieHnm0ikBe4BR5w6O1XE?p=preview
在那里,我有src/MyService.ts
一个Subject
使用setInterval
.
仅在您单击具有空单击处理程序的按钮时才会呈现其值Subject
。src/app.ts
src/MyService.ts
import * as Rx from 'rxjs/Rx';
let global = {};
// The Observable
global.subject = new Rx.Subject();
// Updates value every second
setInterval(() => global.subject.next(Date.now()), 1000);
export var Global = global;
src/app.ts
import {Component} from 'angular2/core'
import {Global} from './myService'
@Component({
selector: 'my-app',
providers: [],
template: `
<div>
<h2>Hello {{name}}</h2>
<button (click)="clickMe()">Click me</button>
<p>Current time: {{subject | async}}</p>
</div>
`,
directives: []
})
export class App {
public subject = Global.subject;
constructor() {
this.name = 'Angular2'
}
public clickMe () {
console.log("I'm just a click event that do nothing");
}
}