Angular Http不工作。承诺与Observable方法相结合

问题描述 投票:4回答:2

我正在尝试将数据发布到Angular的后端Node js文件中。表单提交后,函数调用:

cmdSubmit() : void 
{
       console.log(this.cli);
       this.Cliservice.postdata(this.cli)
                      .then(clidata  => this.clidata.push(clidata),
                            error =>  this.errorMessage = <any>error);

}

postdata功能代码:

postdata(obj: any): Promise<any> {
    alert('hello');
    let body = JSON.stringify({ obj });
    let headers = new Headers({ 'Content-Type': 'application/json' });
    let options = new RequestOptions({ headers: headers });

    return this.http.post(this.runUrl, body, options)
                    .map(this.extractData)
                    .catch(this.handleError);

    /*return this.http.post(this.runUrl, body, options)
                      .map(this.extractData)
                      .catch(res => {
             // do something

             // To throw another error, use Observable.throw
             return Observable.throw(res.json());
      });*/


    }

    private extractData(res: Response) {
       let body = res.json();
       return body.data || { };
    }

private handleError (error: any) {
    // In a real world app, we might use a remote logging infrastructure
    // We'd also dig deeper into the error to get a better message
    let errMsg = (error.message) ? error.message :
                  error.status ? `${error.status} - ${error.statusText}` : 'Server error';
    console.error(errMsg); // log to console instead
    return Observable.throw(errMsg);
 }

}

但这里什么也没发生。我没有收到任何错误消息。你能就此提出一些建议吗?

angular typescript http angular2-services
2个回答
9
投票

返回Http的每个Observable函数都必须附加一个.subscribe()方法。当您错过此方法时,请求将不会执行。所以将.subscribe()方法附加到每个函数。

正如在评论中所说,你使用两种方法:Promise styleObservable style,所以我建议你使用一种常见的风格。

this.http.post(this.runUrl, body, options)
         .map(this.extractData).subscribe(/*here your parameters*/);

3
投票

@Suren提到的是完全正确的。作为替代方案,您也可以使用toPromise()方法将其直接转换为Promise对象:

return this.http.post(this.runUrl, body, options).toPromise();

为此,您需要导入以下内容

import 'rxjs/add/operator/toPromise'
© www.soinside.com 2019 - 2024. All rights reserved.