Angular - 我想将一个服务拆分为多个服务但共享相同的数据

发布于 2025-01-17 01:56:43 字数 414 浏览 0 评论 0原文

我有一个 1000 行长的服务,我想将其拆分为多个服务,但我需要在这些不同的服务之间共享一些数据。

@Injectable()
export class ServiceParent {
  toto = new Toto(),
}

@Injectable()
export class ServiceChild extend ServiceParent {

  init() {
    this.toto.doSomething();
  }
}

@Component()
export class myComponent {

  ngOnInit() {
    console.log('this.ServiceChild.init()') // return undefined
  }
}

如何解决这个问题?

谢谢^^

I have a service that is 1000 lines long, I would like to split it into several services but I need to share some data between these different services.

@Injectable()
export class ServiceParent {
  toto = new Toto(),
}

@Injectable()
export class ServiceChild extend ServiceParent {

  init() {
    this.toto.doSomething();
  }
}

@Component()
export class myComponent {

  ngOnInit() {
    console.log('this.ServiceChild.init()') // return undefined
  }
}

How to solve this problem ?

Thanks ^^

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

满栀 2025-01-24 01:56:44

只需创建一个全局变量即可。

let toto = new Toto();

@Injectable()
export class Service1 {

  init() {
    this.toto.doSomething();
  }
}


@Injectable()
export class Service2 {

  init() {
    this.toto.doSomething();
  }
}

Simply create a global variable.

let toto = new Toto();

@Injectable()
export class Service1 {

  init() {
    this.toto.doSomething();
  }
}


@Injectable()
export class Service2 {

  init() {
    this.toto.doSomething();
  }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文