Heim > Fragen und Antworten > Hauptteil
private headers = new Headers({'Content-Type': 'application/json'});
private url = 'localhost:3000/users/register';
constructor(private http: Http) { }
registerEmail(link:string , email: string , password: string): Promise<any>
{
return this.http
.post(this.url, JSON.stringify({email: email , password: password}), {headers: this.headers})
.toPromise()
.then(res => res.json().data)
.catch(this.handleError);
}
Verwenden Sie die Postboten-Anfrage, um die Post-Anfrage normal anzuzeigen
过去多啦不再A梦2017-05-16 13:20:24
你运行POST请求的主机是什么?angular在跨域请求的时候会有一个Options,好像是检查是否允许跨域的。我目前的项目里前后端域名不一样的,也是Options和Request同时出现,以前同域名的时候没有。