Angular HttpClient 跨域请求不成功

发布于 2022-09-05 09:47:55 字数 1275 浏览 13 评论 0

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 

clipboard.png

请求相关信息:

clipboard.png

同样的请求,在localhost中,用jquery的$ajax可以成功请求。

clipboard.png

请教,是哪里出了问题呢?怎么破?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼前雾蒙蒙 2022-09-12 09:47:55

使用HttpParams解决了……
这……

let rem = (this.remember ? '1' : '0');
    const param = new HttpParams().append('username', this.username).append('password', this.password).append('remember', rem );
    this.http
      .post(this.appservice.apiurl + this.appservice.apilist.login, param)
      // See below - subscribe() is still necessary when using post().
      .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.");
      });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文