问题描述: 在Angular 7中,当我们尝试从一个共享给组件的服务中获取值时,可能会遇到无法获取值的问题。
解决方法: 以下是一些可能的解决方法:
constructor(private sharedService: SharedService) { }
@Injectable()
export class SharedService {
sharedValue: any;
constructor() { }
setSharedValue(value: any) {
this.sharedValue = value;
}
getSharedValue() {
return this.sharedValue;
}
}
setSharedValue()
方法之前已经调用了服务的方法。例如:ngOnInit() {
this.sharedService.setSharedValue('Hello World');
}
getSharedValue()
方法之前已经调用了服务的方法。例如:ngOnInit() {
this.sharedValue = this.sharedService.getSharedValue();
}
@Injectable()
export class SharedService {
private sharedValue = new BehaviorSubject(null);
constructor() { }
setSharedValue(value: any) {
this.sharedValue.next(value);
}
getSharedValue() {
return this.sharedValue.asObservable();
}
}
在组件中获取值的示例:
ngOnInit() {
this.sharedService.getSharedValue().subscribe(value => {
this.sharedValue = value;
});
}
以上是一些常见的解决方法,可以用来解决在Angular 7中无法从共享给组件的服务中获取值的问题。