168

投稿リクエストを行うと、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=>{});

これは意図されたものですか?それともバグですか?

4

3 に答える 3

275

クラスのpostメソッドはHttpオブザーバブルを返すため、初期化処理を実行するにはそれをサブスクライブする必要があります。オブザーバブルは怠惰です。

詳細については、次のビデオをご覧ください。

于 2016-03-24T19:43:01.447 に答える
43

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();
    }
}
于 2017-03-25T15:05:10.207 に答える