kittencup / angular2-ama-cn

angular2 随便问
691 stars 101 forks source link

.toRx() has been delete in ng-book2-r32, please modify this problem. #166

Closed wuxiangege closed 8 years ago

wuxiangege commented 8 years ago

makePost(): void { this.loading = true; this.http.post( "http://jsonplaceholder.typicode.com/posts", JSON.stringify({ body: "bar", title: "foo", userId: 1 })) .toRx() .subscribe((res: Response) => { this.data = res.json(); this.loading = false; }); }