我在 Angular2 (2.0.0-beta.0) 应用程序中定义了一项服务。是这样的:
import {Injectable} from "angular2/core";
@Injectable()
export class MyService {
constructor() {
}
getSomething() {
return 'something';
}
}
我将它列在我的主应用程序文件的 bootstrap() 函数中,以便它通常可用于我的代码:
bootstrap(App, [MyService, SomeOtherService, ROUTER_DIRECTIVES[);
有时我无法在组件中使用该服务,即使我myService:MyService
在组件constructor()
功能中有类似的东西,如下所示:
import {MyService} from '../services/my.service';
@Component({
selector: 'my-component',
directives: [],
providers: [],
pipes: [],
template: `
<div><button (click)="doStuff()">Click Me!</button></div>
`
})
export MyComponent {
constructor(myService:MyService) {} // note the private keyword
doStuff() {
return this.myService.getSomething();
}
}
在其他地方它工作正常。在它不起作用的地方,如果我尝试访问它,我会收到一条消息:
EXCEPTION: TypeError: Cannot read property 'getSomething' of undefined
这基本上意味着服务没有被注入。
是什么导致它无法注入?