文章详情页
angular.js - angular4 发出post请求 服务端显示OPTIONS
问题描述
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);}
用postman请求正常显示post请求
问题解答
回答1:你运行POST请求的主机是什么?angular在跨域请求的时候会有一个Options,好像是检查是否允许跨域的。我目前的项目里前后端域名不一样的,也是Options和Request同时出现,以前同域名的时候没有。
相关文章:
排行榜