从Angular 2 Service创建和返回Observable

时间:2015-11-12 15:30:36

标签: angular observable

这更像是一个“最佳实践”问题。有三个玩家:ComponentServiceModelComponent正在调用Service从数据库中获取数据。 Service正在使用:

this.people = http.get('api/people.json').map(res => res.json());

返回Observable

Component可以订阅Observable

    peopleService.people
        .subscribe(people => this.people = people);
      }

但是,我真正想要的是Service返回Array of Model个对象,这些对象是从Service从数据库中检索到的数据创建的。我意识到Component可以在subscribe方法中创建这个数组,但我认为如果服务执行此操作并将其提供给Component,它会更清晰。

Service如何创建包含该数组的新Observable并返回该数组?

6 个答案:

答案 0 :(得分:153)

更新:9/24/16 Angular 2.0稳定

这个问题仍然有很多流量,因此,我想更新它。随着Alpha,Beta和7个RC候选人的变化精神错乱,我停止更新我的SO答案,直到他们稳定下来。

这是使用SubjectsReplaySubjects

的完美案例

个人更喜欢使用ReplaySubject(1),因为它允许在新用户即使迟到时附加最后一个存储的值:

let project = new ReplaySubject(1);

//subscribe
project.subscribe(result => console.log('Subscription Streaming:', result));

http.get('path/to/whatever/projects/1234').subscribe(result => {
    //push onto subject
    project.next(result));

    //add delayed subscription AFTER loaded
    setTimeout(()=> project.subscribe(result => console.log('Delayed Stream:', result)), 3000);
});

//Output
//Subscription Streaming: 1234
//*After load and delay*
//Delayed Stream: 1234

所以,即使我迟到或需要加载以后我总能得到最新的电话而不用担心错过回调。

这也允许您使用相同的流向下推送到:

project.next(5678);
//output
//Subscription Streaming: 5678

但是,如果你100%确定,你只需要打一次电话怎么办?留下开放的主题和可观察的观点并不好,但总有那些“假设怎么样?”

这就是AsyncSubject进来的地方。

let project = new AsyncSubject();

//subscribe
project.subscribe(result => console.log('Subscription Streaming:', result),
                  err => console.log(err),
                  () => console.log('Completed'));

http.get('path/to/whatever/projects/1234').subscribe(result => {
    //push onto subject and complete
    project.next(result));
    project.complete();

    //add a subscription even though completed
    setTimeout(() => project.subscribe(project => console.log('Delayed Sub:', project)), 2000);
});

//Output
//Subscription Streaming: 1234
//Completed
//*After delay and completed*
//Delayed Sub: 1234

真棒!即使我们关闭了主题,它仍然会回复它加载的最后一件事。

另一件事是我们如何订阅该http调用并处理响应。 Map非常适合处理回复。

public call = http.get(whatever).map(res => res.json())

但是,如果我们需要嵌套这些电话怎么办?是的,您可以使用具有特殊功能的主题:

getThing() {
    resultSubject = new ReplaySubject(1);

    http.get('path').subscribe(result1 => {
        http.get('other/path/' + result1).get.subscribe(response2 => {
            http.get('another/' + response2).subscribe(res3 => resultSubject.next(res3))
        })
    })
    return resultSubject;
}
var myThing = getThing();

但这很多,意味着你需要一个功能来做到这一点。输入FlatMap

var myThing = http.get('path').flatMap(result1 => 
                    http.get('other/' + result1).flatMap(response2 => 
                        http.get('another/' + response2)));

很好,var是一个可以从最终的http调用中获取数据的observable。

好的,但我想要一个angular2服务!

我找到了你:

import { Injectable } from '@angular/core';
import { Http, Response } from '@angular/http';
import { ReplaySubject } from 'rxjs';

@Injectable()
export class ProjectService {

  public activeProject:ReplaySubject<any> = new ReplaySubject(1);

  constructor(private http: Http) {}

  //load the project
  public load(projectId) {
    console.log('Loading Project:' + projectId, Date.now());
    this.http.get('/projects/' + projectId).subscribe(res => this.activeProject.next(res));
    return this.activeProject;
  }

 }

 //component

@Component({
    selector: 'nav',
    template: `<div>{{project?.name}}<a (click)="load('1234')">Load 1234</a></div>`
})
 export class navComponent implements OnInit {
    public project:any;

    constructor(private projectService:ProjectService) {}

    ngOnInit() {
        this.projectService.activeProject.subscribe(active => this.project = active);
    }

    public load(projectId:string) {
        this.projectService.load(projectId);
    }

 }

我是观察者和观察者的忠实粉丝所以我希望这次更新有所帮助!

原始答案

我认为这是使用Observable SubjectAngular2 EventEmitter的用例。

在您的服务中,您可以创建一个EventEmitter,允许您将值推送到它上面。在 Alpha 45 中,您必须将其转换为toRx(),但我知道他们正在努力摆脱它,所以在 Alpha 46 您可能能够只需返回EvenEmitter即可。

class EventService {
  _emitter: EventEmitter = new EventEmitter();
  rxEmitter: any;
  constructor() {
    this.rxEmitter = this._emitter.toRx();
  }
  doSomething(data){
    this.rxEmitter.next(data);
  }
}

这种方式具有您的不同服务功能现在可以推送的单个EventEmitter

如果您想直接从通话中返回一个观察者,您可以执行以下操作:

myHttpCall(path) {
    return Observable.create(observer => {
        http.get(path).map(res => res.json()).subscribe((result) => {
            //do something with result. 
            var newResultArray = mySpecialArrayFunction(result);
            observer.next(newResultArray);
            //call complete if you want to close this stream (like a promise)
            observer.complete();
        });
    });
}

这将允许您在组件中执行此操作: peopleService.myHttpCall('path').subscribe(people => this.people = people);

搞乱你服务中的电话结果。

我喜欢自己创建EventEmitter流,以防我需要从其他组件访问它,但我可以看到两种方式都有效...

这是一个使用事件发射器显示基本服务的plunker:Plunkr

答案 1 :(得分:27)

这是Angular2 docs关于如何创建和使用自己的Observable的示例:

服务

import {Injectable} from 'angular2/core'
import {Subject}    from 'rxjs/Subject';
@Injectable()
export class MissionService {
  private _missionAnnouncedSource = new Subject<string>();
  missionAnnounced$ = this._missionAnnouncedSource.asObservable();

  announceMission(mission: string) {
    this._missionAnnouncedSource.next(mission)
  }
}

组件

    import {Component}          from 'angular2/core';
    import {MissionService}     from './mission.service';

    export class MissionControlComponent {
      mission: string;

      constructor(private missionService: MissionService) {

        missionService.missionAnnounced$.subscribe(
          mission => {
            this.mission = mission;
          })
      }

      announce() {
        this.missionService.announceMission('some mission name');
      }
    }

可在此处找到完整且有效的示例: https://angular.io/docs/ts/latest/cookbook/component-communication.html#!#bidirectional-service

答案 2 :(得分:18)

我想补充一点,如果创建的对象是静态的,而不是来自http,可以这样做:

public fetchModel(uuid: string = undefined): Observable<string> {
      if(!uuid) { //static data
        return Observable.of(new TestModel()).map(o => JSON.stringify(o));
      }
      else {
        return this.http.get("http://localhost:8080/myapp/api/model/" + uuid)
                .map(res => res.text());
      }
    }

修改 对于Angular 7.x.x映射需要使用此处描述的pipe()完成(https://stackoverflow.com/a/54085359/986160):

import {of,  Observable } from 'rxjs';
import { map } from 'rxjs/operators';
[...]
public fetchModel(uuid: string = undefined): Observable<string> {
      if(!uuid) { //static data
        return of(new TestModel());
      }
      else {
        return this.http.get("http://localhost:8080/myapp/api/model/" + uuid)
                .pipe(map((res:any) => res)) //already contains json
      }
    }

从回答我关于观察者和静态数据的问题:https://stackoverflow.com/a/35219772/986160

答案 3 :(得分:15)

我在派对上有点晚了,但我认为我的方法的优势在于它没有使用EventEmitters和Subjects。

所以,这是我的方法。我们无法离开subscribe(),我们也不想这样做。在这种情况下,我们的服务将返回Observable<T>与观察员一起拥有我们珍贵的货物。我们会从来电者初始化变量Observable<T>,然后它会获得服务Observable<T>。接下来,我们将订阅此对象。最后,你得到你的&#34; T&#34;!来自你的服务。

首先,我们的人员服务,但你的服务没有传递参数,这更现实:

people(hairColor: string): Observable<People> {
   this.url = "api/" + hairColor + "/people.json";

   return Observable.create(observer => {
      http.get(this.url)
          .map(res => res.json())
          .subscribe((data) => {
             this._people = data

             observer.next(this._people);
             observer.complete();


          });
   });
}

好的,正如您所看到的,我们正在返回Observable类型&#34;人员&#34;。方法的签名,甚至是这样说的!我们将_people对象塞入我们的观察者。我们将在Component中的调用者中访问此类型,接下来!

在组件中:

private _peopleObservable: Observable<people>;

constructor(private peopleService: PeopleService){}

getPeople(hairColor:string) {
   this._peopleObservable = this.peopleService.people(hairColor);

   this._peopleObservable.subscribe((data) => {
      this.people = data;
   });
}

我们通过从_peopleObservable返回Observable<people>来初始化我们的PeopleService。然后,我们订阅了这个属性。最后,我们将this.people设置为我们的数据(people)响应。

以这种方式构建服务比典型服务具有一个主要优势:map(...)和component:&#34; subscribe(...)&#34;图案。在现实世界中,我们需要将json映射到我们类中的属性,有时候,我们会在那里做一些自定义的东西。所以这个映射可以在我们的服务中发生。而且,通常,因为我们的服务调用不会被使用一次,但是,可能在我们的代码中的其他地方,我们不必再次在某个组件中执行该映射。此外,如果我们向人们添加一个新领域怎么办?....

答案 4 :(得分:7)

请注意,您正在使用Observable#map将基础Observable发出的原始Response对象转换为JSON响应的已解析表示。

如果我理解正确,您想再次map。但这一次,将原始JSON转换为Model的实例。所以你会做类似的事情:

http.get('api/people.json')
  .map(res => res.json())
  .map(peopleData => peopleData.map(personData => new Person(personData)))

所以,你开始使用一个发出Response对象的Observable,将其转换为一个observable,它发出该响应的已解析JSON的对象,然后将其转换为另一个可以转换原始JSON的observable进入你的模型阵列。

答案 5 :(得分:4)

在service.ts文件中 -

一个。从'observable /中导入'of'  湾创建一个json列表
 C。使用Observable.of()返回json对象     防爆。 -

import { Injectable } from '@angular/core';
import { Observable } from 'rxjs/Observable';
import { of } from 'rxjs/observable/of';

@Injectable()
export class ClientListService {
    private clientList;

    constructor() {
        this.clientList = [
            {name: 'abc', address: 'Railpar'},
            {name: 'def', address: 'Railpar 2'},
            {name: 'ghi', address: 'Panagarh'},
            {name: 'jkl', address: 'Panagarh 2'},
        ];
    }

    getClientList () {
        return Observable.of(this.clientList);
    }
};

在我们调用服务的get函数的组件中 -

this.clientListService.getClientList().subscribe(res => this.clientList = res);