角度版本:12.0.1
我已经为一个组件创建了一个服务,我的要求是现在只将该服务与该组件一起使用。当我在组件中注入服务并尝试访问其实例时,它是未定义的。第一次在ngOnInit中,它是可访问的,但在其他地方没有定义。
组件中的相关代码:
@Component({
selector: 'app-component',
templateUrl: './app-component.component.html',
styleUrls: ['./app-component.component.scss'],
providers : [MyService]
})
export class AppComponent implements OnInit {
...some declarations and initializations
constructor(private myService: MyService) {}
ngOnInit(): void {
this.myObservable$ = this.myService?.getSomething('/');
}
functionCalledFromTemplaceButtonClick(item : any){
// The service is undefined here
return this.myService.getSomething(item);
}
}
来自服务的相关代码:
@Injectable({
providedIn: 'root',
})
export class MyService {
constructor(
private httpClient: HttpClient,
) {}
getSomething(item: any) {
// Makes an api call here
}
}
我在模块中也提供了Service-MyService。
现有的问题都没有帮助,请请求一些帮助。
我删除了我的方法,用箭头函数替换它,并在顶部声明和定义,如下所示:
public functionCalledFromTemplaceButtonClick =(item : any) =>{
// The service has the context here
return this.myService.getSomething(item);
}