当我们将get methos称为显示结果时。
当我们尝试使用post方法API登录时也是如此。它抛出的电子邮件和密码不能为空。似乎它的http.post('url',params,headers);没有发布值。任何人都可以帮助我是否有任何标题需要传递额外的或是否有任何配置设置,以使http.post工作?
login(param) {
let headers = new Headers({ 'Content-Type': 'application/json' });
let options = new RequestOptions({ headers: headers });
return this.http.post(this.apiUrl + '/login', JSON.stringify(param), options)
.map((res: Response) => {
if (res) {
return { status: res.status, json: res.json() }
}
});
}