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 { return this.http .post(this.url, JSON.stringify({email: email , password: password}), {headers: this.headers}) .toPromise() .then(res => res.json().data) .catch(this.handleError); }
#用postman請求正常顯示post請求
你運行POST請求的主機是什麼? angular在跨域請求的時候會有一個Options,好像是檢查是否允許跨域的。我目前的專案裡前後端網域不一樣的,也是Options和Request同時出現,以前同網域的時候沒有。