Pub/Sub design pattern angularjs service

后端 未结 2 824
小鲜肉
小鲜肉 2021-01-27 05:41

I\'ve been trying to use the answer here posted by Mark Rajcok

angular JS - communicate between non-dependend services

I am having trouble understanding his answ

2条回答
  •  借酒劲吻你
    2021-01-27 06:37

    In his example, NotificationService is a new service that any of the existing services would depend on. He provided an implementation of Service1 but Service2 would essentially be the same...both depend on NotificationService and neither know about each other.

    Service1 and Service2 each subscribe to events by calling NotificationService.onEvent1(event1Happened); and trigger events by calling NotificationService.event1Happened(my_data);.

提交回复
热议问题