Angular 2 个连续的 http 请求

Angular 2 consecutive http requests

在我的 angular 数据服务中,我尝试发出两个 http 请求,第二个请求取决于第一个请求的数据。第一个请求工作正常,但由于某种原因,第二个请求永远不会访问我的后端服务器。我希望是否有人可以告诉我我是否正确地执行此操作或告诉我我做错了什么。

@Injectable()
export class DataService {

  constructor( private http: Http ) { }

public twoRequest() {
    this.http.get(`http://localhost:3000/1st_request`).subscribe((data) => 
      this.http.post(`http://localhost:3000/2nd_request`, {data: data}))
}

编辑:我没有订阅第二个请求。我不知道你必须订阅你发出的每个请求,即使它们在同一个代码块中

您还需要 subscribehttp.post。如果您不 subscribe 它永远不会发出请求。

@Injectable()
export class DataService {

  constructor( private http: Http ) { }

  public twoRequest() {
     this.http.get(`http://localhost:3000/1st_request`).subscribe((data) => 
       this.http.post(`http://localhost:3000/2nd_request`, {data: data}).subscribe(/*...*/));
}
public twoRequest() {
        this.http.get(`http://localhost:3000/1st_request`).subscribe((data) => {
            this.http.post(`http://localhost:3000/2nd_request`, {data:data})) 
               .subscribe((resp: any) => {
                 console.log(resp)
             })
           }

    }