我正在尝试将数据发布到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);
}
}
但这里什么也没发生。我没有收到任何错误消息。你能就此提出一些建议吗?
返回Http
的每个Observable
函数都必须附加一个.subscribe()
方法。当您错过此方法时,请求将不会执行。所以将.subscribe()
方法附加到每个函数。
正如在评论中所说,你使用两种方法:Promise style
和Observable style
,所以我建议你使用一种常见的风格。
this.http.post(this.runUrl, body, options)
.map(this.extractData).subscribe(/*here your parameters*/);
@Suren提到的是完全正确的。作为替代方案,您也可以使用toPromise()
方法将其直接转换为Promise对象:
return this.http.post(this.runUrl, body, options).toPromise();
为此,您需要导入以下内容
import 'rxjs/add/operator/toPromise'