Angular HttpClient 跨域请求不成功
Angular版本 4.3.3
请求代码:
this.http.post(apiurl,
{
username:this.username,
password:this.password,
remember:(this.remember ? 1 : 0)
})
.subscribe(
(val) => {
console.log("POST call successful value returned in body",
val);
},
response => {
console.log("POST call in error", response);
},
() => {
console.log("The POST observable is now completed.");
});
控制台报错信息:
XMLHttpRequest cannot load http://172.16.0.10:8085/xapi/admin/login. Request header field Content-Type is not allowed by Access-Control-Allow-Headers in preflight response.
login.component.ts:129
POST call in error
请求相关信息:
同样的请求,在localhost中,用jquery的$ajax可以成功请求。
请教,是哪里出了问题呢?怎么破?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用HttpParams解决了……
这……