Angular 2 @Injectable 似乎不起作用
Posted
技术标签:
【中文标题】Angular 2 @Injectable 似乎不起作用【英文标题】:Angular 2 @Injectable seems not to be not working 【发布时间】:2017-04-12 16:06:33 【问题描述】:我正在尝试使用 TypeScript 为我的 Angular 2 组件提供服务。我阅读了很多关于如何创建服务的教程,他们都说我的服务需要使用装饰器 @Injectable 并且我应该能够将它注入到我的组件中。当我想注入我的服务时,这似乎对我不起作用,但使用 @Inject 可以。
我的服务:
import Injectable from '@angular/core';
import Observable from 'rxjs';
@Injectable()
export class GeolocationService
/**
* Get the current location of the user
* @return Observable<any> An observable with the location of the user.
*/
public getLocation(): Observable<any>
return Observable.create(observer =>
if (window.navigator && window.navigator.geolocation)
window.navigator.geolocation.getCurrentPosition(position =>
observer.next(position);
observer.complete();
, error =>
observer.error(error);
,
maximumAge: 0
);
else
observer.error('Browser does not support location services');
);
我的组件,不工作的版本 (v1):
import GeolocationService from './geolocation.service';
@Component(
templateUrl: 'home.component.html',
styleUrls: [ 'home.component.scss' ],
providers: [ GeolocationService ]
)
export class HomeComponent implements OnInit
constructor(private myService: GeolocationService)
this.myService.getLocation()
.subscribe(position => console.log('my position', position));
// .error(err => console.log('oop error', err))
我的组件,工作版本(v2)
import GeolocationService from './geolocation.service';
@Component(
templateUrl: 'home.component.html',
styleUrls: [ 'home.component.scss' ],
providers: [ GeolocationService ]
)
export class HomeComponent implements OnInit
constructor(@Inject(GeolocationService) private myService: GeolocationService)
this.myService.getLocation()
.subscribe(position => console.log('my position', position));
// .error(err => console.log('oop error', err))
你能解释一下为什么只有第二个版本有效吗?
【问题讨论】:
定义“不工作”。究竟会发生什么?你能在 plunkr 中重现它吗? 可能你的问题和***.com/questions/39602890/…很相似 将其添加到您的模块中 能否请您添加您的 tsconfig 以及您在运行第一个版本时在控制台中看到的错误消息?请注意,当您的服务类本身没有任何要注入的依赖项时,不需要 @Injectable。要使服务可注入,您必须provide
它并在组件的 constructor
中具有正确的类型定义。我假设存在一些配置问题。
【参考方案1】:
我发现我的 tsconfig.json 中缺少“emitDecoratorMetadata”。我将它与“emitDecoratorData”混淆了。不过感谢您的帮助!
【讨论】:
【参考方案2】:@Inject()
是一种手动告诉 Angular 必须注入参数的方式。不建议按照自己的方式使用。
对于第一个示例,我认为您没有告诉您的应用程序模块您正在使用该可注射剂。您必须将它导入您的主应用程序模块并将其用作provider
。然后你就可以将它注入到其他组件中,正如你对依赖注入器所说的,GeolocationService
类现在可以注入到其他类中。
【讨论】:
以上是关于Angular 2 @Injectable 似乎不起作用的主要内容,如果未能解决你的问题,请参考以下文章
使用 Angular Ivy 抽象 @Injectable 不起作用
在 Angular 6 中生成服务时,提供 Injectable 装饰器的目的是啥?