HTTP call using Observable not working

2019-09-22 08:53发布

In the function below, I have two calls to the server, one using Observable and the other using Promise. The call using Observable does not reach the server but the one using promise does. Any idea why?

public placeOrder(order:string) {

//Using Observable
this.http.post(this.newOrderUrl, {order: order}, this.options)
.map((response:Response) => {
  console.log('new order', response.json())
})

//Using Promise
this.http.post(this.newOrderUrl, {order: order}, this.options)
.toPromise()
.then((response:Response) => {
  console.log('new order', response.json())
})
}

1条回答
Animai°情兽
2楼-- · 2019-09-22 09:50

You need to return the response.json() if you are using Observable

 return this.http.post(this.newOrderUrl, {order: order}, this.options)
   .map((response: Response) => response.json()
 );

and in your component, call using subscribe()

this._myservice.placeOrder('somestring').subscribe((orders: any) => {
});
查看更多
登录 后发表回答