当我们将包含JSON内容的数据发送到外部api时,会发生Access-Control-Allow-Origin
错误。这个问题的解决方案是使用x-www-form-urlencoded content
。
反正使用JSON了吗?
JSON内容:
this.http.post('/api/login', {
email: email,
password: pass
}).map(res => res.json())
.subscribe(response => {
console.log(response);
} , error => console.error(error));
}
x-www-form-urlencod
:
this.headers.append('Content-Type', 'application/x-www-form-urlencoded');
this.options = new RequestOptions({ headers: this.headers, method: 'post'});
return this.http.post('/api/login', "email=info@mail.com&password=123", this.options )
.map(res => res.json())
.map(user => {
if (user) {
console.log(user);
}
return !!user ;
});
}
其他解决方案:
1.在Chrome中安装Access-Control-Allow-Origin扩展程序
2.在localhost bu中寻找另一种方式的web api
3.在IIS7上启用CORS
但问题仍未解决!
答案 0 :(得分:1)
WebConfig:
<httpProtocol> <customHeaders> <add name="Access-Control-Allow-Origin" value="*" /> </customHeaders> </httpProtocol>
WebApiConfig:
EnableCorsAttribute cors = new EnableCorsAttribute("*", "*", "GET,POST,PUT,DELETE");
config.EnableCors(cors);