我正在尝试使用MEAN堆栈创建应用程序。在将数据从角度2客户端发送到节点服务器时,我遇到的问题是没有请求传递给服务器,并且它没有出错。
onSubmit(formData){
console.log(formData);
var headers = new Headers();
headers.append('Content-Type', 'application/json');
return this.http.post('http://127.0.0.1:3000/investors/add/postData', formData, {headers: headers}).map(res => res.json());
}