如何在整个应用程序中以角度2保存来自多个服务的数据?

时间:2016-02-22 18:38:05

标签: angularjs design-patterns angular

以下是我想要实现的目标: 我有一个应用程序,我基本上希望能够从许多服务中保存数据(例如,包含日志条目列表的“记录器”服务;包含主题列表和/或“主题”服务样式设置;等...)。为简单起见,我使用localStorage来保存这些数据。因此,我有一个通用的“LocalStorage”服务,它定义了用于保存和加载键/值对的成员。

我的问题是: 从高级设计角度来看,我应该如何从单个控制点(即设置页面上的“保存/加载”按钮)保存和加载我的应用程序数据。理想情况下,我希望能够以这样一种方式实现我的应用程序服务,即每个应用程序实现一个通用的“本地存储”接口,该接口需要在该服务中实现“保存数据”和“加载数据”方法。我正在努力的部分是如何迭代可能实现这个“本地存储”接口的所有服务,并立即调用所有“保存/加载”方法。就此而言,我甚至不确定这是否是正确的方法。

我还是Angular 2的新手,所以如果有人能够解决这类问题,并建议一个合理的解决方案,我们将不胜感激。谢谢!

1 个答案:

答案 0 :(得分:4)

我会使用全局服务(甚至可能是LocalStorageService,但我想更适合使用特定于UI的服务。我以GlobalUserActions为例:

@Injectable()
export class GlobalUserActions {
  // Subject would be better but I don't know TS/RxJS well enough
  // EventEmitter should only be used for @Output()
  saveAll:EventEmitter = new EventEmitter(); 

  doSaveAll() {
    saveAll.emit(null); // or any information that might be useful to components
  }
}
@Component({
  selector: 'any-com',
  ...
}) 
export class AnyComponent {
  constructor(
      private globalUserActions: GlobalUserActions,
      private persistenceService: PersistenceService) {
    this.globalUserActions.saveAll.subscribe(save);
  }

  save(value) {
    this.persistenceService.save(...);
  }
}
bootstrap(AppComponent, [ ... ,
    LocalStorageService, 
    // use a generic `PersistenceService` but provide a concrete
    // `LocalStorageService`
    provide(PersistenceService, {useExisting: LocalStorageService})
]);