我有一个应用程序模块和单组件应用程序(用于演示我的问题),并出现以下错误:
Error in ./AppComponent class AppComponent_Host - inline template:0:0 caused by: No provider for UserService! ; Zone: <root> ; Task: Promise.then ; Value:
AppModule 的代码:
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { UserService } from './components/common/userservice';
@NgModule({
imports: [
BrowserModule,
],
declarations: [
AppComponent
],
providers: [UserService],
bootstrap: [AppComponent],
entryComponents: []
})
export class AppModule {
}
我的 AppComponent 的代码:
import { Component} from '@angular/core';
import { UserService} from './userservice';
@Component({
selector: 'App',
template: `<h3>App component</h3>
user name: {{userName}}
`,
providers: []
})
export class AppComponent {
userName: string;
constructor(userService: UserService) {
this.userName = userService.userName;
}
}
我的用户服务代码:
import { Injectable, EventEmitter } from '@angular/core';
@Injectable()
export class UserService {
obs$: EventEmitter<any> = new EventEmitter<any>()
userName = 'Sherlock Holmes';
}
现在,如果我将 UserService 作为提供程序添加到 AppComponent,它将解决问题。但我不想,因为我只想要整个应用程序中的一个服务实例。即使在子模块(功能模块)中。
根据我的理解,如果我在模块级别添加服务作为提供者,那么我可以将它注入到模块下的任何组件中。
这是我正在观看的示例。
我正在使用 angular2 版本:“2.0.0”