我想用udpate我的应用程序视图,由服务中的事件触发。
我的一个服务注入了ChangeDetectorRef。编译工作正常,但是当我的应用程序被引导时,我在浏览器中收到错误:No provider for ChangeDetectorRef!
。
我以为我需要将它添加到我的AppModule中,但我找不到任何表明它在我可以导入的模块中的文档。我尝试将类本身添加到导入数组,但这导致了错误。尝试将其添加到模块中的providers数组时,我也遇到错误。这是我服务的简化版本:
import {Injectable, ChangeDetectorRef } from '@angular/core';
@Injectable()
export class MyService {
private count: number = 0;
constructor(private ref: ChangeDetectorRef){}
increment() {
this.count++;
this.ref.detectChanges();
}
以及app模块:
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import { MyService } from './my.service';
@NgModule({
imports: [ BrowserModule ],
declarations: [ AppComponent ],
providers: [ MyService ],
booststrap: [ AppComponent ]
})
export AppModule {}
更新
我已经尝试删除我对ChangeDetectorRef的使用,但我仍然遇到同样的问题。我猜我更新了我的System JS配置有什么问题。
我最初使用angular-cli创建了应用程序,并且因为他们没有更新它而试图自己更新Angular。随着Angular 2.0.0的最终版本,他们更新了angular-cli以使用最新版本的angular。所以我将尝试使用他们的升级程序,希望这会更好。
更新2
webpack / angular-cli更新进展顺利。我现在使用Angular 2.0.0和angular-cli 1.0.0-beta14进行应用程序构建。我仍然在浏览器中得到相同的错误。我尝试从服务中删除 ChangeDetectorRef ,但我没有。我有两个服务。如果我从两个服务中删除它,那么我的应用程序加载正常,并且运行良好,除了我尝试使用 ChangeDetectorRef 的地方。一旦我将其添加回其中一个文件中,浏览器就会抱怨无法为其找到提供商。
我尝试在模块中导入它,但它不是模块,因此转换器会抱怨。我尝试在我的模块中列出一个提供程序,但它没有提供属性,因此转换器抱怨。如果我尝试将它放在声明数组中,那么类似的问题。
答案 0 :(得分:30)
ChangeDetectorRef
不适用于此处。它正在寻找给定组件及其子组件的更改。
在您的情况下,最好使用ApplicationRef
:
import {Injectable, ApplicationRef } from '@angular/core';
@Injectable()
export class MyService {
private count: number = 0;
constructor(private ref: ApplicationRef) {}
increment() {
this.count++;
this.ref.tick();
}
}
我使用Observables
检查了此解决方案,它没有任何问题:
import { ApplicationRef, Injectable } from '@angular/core';
import { Observable, ReplaySubject } from "rxjs/Rx";
import * as childProcess from 'child_process';
@Injectable()
export class Reader {
private output: ReplaySubject<string> = new ReplaySubject<string>(0);
constructor(private ref: ApplicationRef) {
var readerProcess = childProcess.spawn('some-process');
readerProcess.stdout.on('data', (data) => {
this.output.next(data.toString());
this.ref.tick();
});
}
public getOutput():Observable<string> {
return this.output;
}
}
这是一个使用它的组件:
import {Component} from '@angular/core';
import { ReplaySubject, Observable } from "rxjs/Rx";
import { Reader } from './reader/reader.service';
@Component({
selector: 'app',
template: `
output:
<div>{{output}}</div>
`
})
export class App {
public output: string;
constructor(private reader: Reader) {}
ngOnInit () {
this.reader.getOutput().subscribe((val : string) => {
this.output = val;
});
}
}
答案 1 :(得分:6)
另一个选项,如果您想从服务触发更改但允许组件控制它们响应的时间,时间和方式是设置订阅。
在您的服务中,添加EventEmitter
:
changeDetectionEmitter: EventEmitter<void> = new EventEmitter<void>();
当服务中可能需要触发更改检测周期的事件发生时,只需发出:
this.changeDetectionEmitter.emit();
现在,在使用此服务的任何组件中,如果他们需要侦听可能的更改触发器,他们可以订阅并做出适当的反应:
this.myService.changeDetectionEmitter.subscribe(
() => {
this.cdRef.detectChanges();
},
(err) => {
// handle errors...
}
);
我有点像这种方法,因为它将变更检测的控制权保留在它所属的组件中,但允许我在服务中集中逻辑。该服务不需要了解有关用户界面的任何信息,它只是通知任何正在聆听某些内容发生变化的人。
答案 2 :(得分:0)
现在是核心的一部分,所以只需要对核心进行引用,但是使用所需的变量并且应该进行操作
import { TestBed } from '@angular/core/testing';
import { ChangeDetectorRef } from '@angular/core';
import { MyService } from './my.service';
describe('MyService', () => {
beforeEach(() => TestBed.configureTestingModule({
providers: [ChangeDetectorRef] // <--- LOOK AT ME I'M A PROVIDER!
}));
it('should be created', () => {
const service: MyService = TestBed.get(MyService);
expect(service).toBeTruthy();
});
});
希望帮助
答案 3 :(得分:0)
我早就该知道了,但是我只是尝试通过被调用的函数将ChangeDetectorRef传递给服务。
//myservice
import { Injectable, ChangeDetectorRef } from '@angular/core';
@Injectable()
export class MyService {
constructor(){}
increment(ref: ChangeDetectorRef, output: number) {
output++;
ref.detectChanges();
}
组件
import {Component} from '@angular/core';
import { MyService } from './myservice.service';
@Component({
selector: 'app',
template: `
output:
<div>{{output}}</div>
`
})
export class App {
public output: number;
constructor(public ref: ChangeDetectorRef, private myService: MyService) {}
ngOnInit () {
this.myService.increment(this.ref,output)
}
}
答案 4 :(得分:0)
使用ApplicationRef
是一个很好的解决方案。我还有其他解决方案:
使用setTimeout
@Injectable()
export class MyService {
private count: number = 0;
constructor(){}
increment() {
setTimeout(() => this.count++, 0);
}
}
使用Promise
@Injectable()
export class MyService {
private count: number = 0;
constructor(){}
increment() {
Promise.resolve().then(() => this.count++);
}
}
如果您使用Zone.js进行更改检测,这两种解决方案都将强制Angular触发更改检测-这是默认方式,并且99%的应用程序都使用它。
答案 5 :(得分:0)
您需要将服务添加到组件级别的提供商:
@Component({
// ...
providers: [MyService]
})
export class SomeComponent {
// ...
}