Angular 2 http.post()がリクエストを送信していません


140

私が投稿リクエストをすると、angular 2 httpがこのリクエストを送信していません

this.http.post(this.adminUsersControllerRoute, JSON.stringify(user), this.getRequestOptions())

http投稿はサーバーに送信されませんが、このようなリクエストを行うと

this.http.post(this.adminUsersControllerRoute, JSON.stringify(user), this.getRequestOptions()).subscribe(r=>{});

これは意図されていますか?それが可能であれば、誰かが私に理由を説明できますか?それともバグですか?

回答:



47

呼び出しを実行する場合は、返されたオブザーバブルをサブスクライブする必要があります。

Httpのドキュメントもご覧ください。

常に購読してください!

HttpClientあなたがそのメソッドによって返された観測可能に()購読呼び出すまでの方法は、そのHTTPリクエストを開始しません。これは、すべての HttpClient メソッドに当てはまります

AsyncPipeを自動的に加入(及び退会)。

HttpClientメソッドから返されるすべてのオブザーバブルは、仕様により低温です。HTTPリクエストの実行はされて延期あなたのような追加の操作で観察を拡張することができ、tapそしてcatchError何が実際に起こる前に。

呼び出すsubscribe(...)とオブザーバブルの実行がトリガーされHttpClient、HTTPリクエストが作成されてサーバーに送信されます。

これらのオブザーバブルは、実際のHTTPリクエストの青写真と考えることができます。

実際、それぞれsubscribe()がオブザーバブルの個別の独立した実行を開始します。2回サブスクライブすると、2つのHTTPリクエストが発生します。

content_copy
const req = http.get<Heroes>('/api/heroes');
// 0 requests made - .subscribe() not called.
req.subscribe();
// 1 request made.
req.subscribe();
// 2 requests made.

41

Getメソッドはsubscribeメソッドを使用する必要はありませんが、postメソッドはsubscribeを必要とします。取得および投稿のサンプルコードは以下のとおりです。

import { Component, OnInit } from '@angular/core'
import { Http, RequestOptions, Headers } from '@angular/http'
import 'rxjs/add/operator/map'
import 'rxjs/add/operator/catch'
import { Post } from './model/post'
import { Observable } from "rxjs/Observable";

@Component({
    templateUrl: './test.html',
    selector: 'test'
})
export class NgFor implements OnInit {

    posts: Observable<Post[]>
    model: Post = new Post()

    /**
     *
     */
    constructor(private http: Http) {

    }

    ngOnInit(){
        this.list()
    }

    private list(){
        this.posts = this.http.get("http://localhost:3000/posts").map((val, i) => <Post[]>val.json())
    }

    public addNewRecord(){
        let bodyString = JSON.stringify(this.model); // Stringify payload
        let headers      = new Headers({ 'Content-Type': 'application/json' }); // ... Set content type to JSON
        let options       = new RequestOptions({ headers: headers }); // Create a request option

        this.http.post("http://localhost:3000/posts", this.model, options) // ...using post request
                         .map(res => res.json()) // ...and calling .json() on the response to return data
                         .catch((error:any) => Observable.throw(error.json().error || 'Server error')) //...errors if
                         .subscribe();
    }
}
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.