Angular 5 - 无法为HttpClient设置标头

问题描述 投票:11回答:6

我想在Angular 5项目中使用HttpClient进行POST调用,我想设置标题:

import { HttpClient, HttpHeaders, HttpRequest } from '@angular/common/http';
import { Injectable } from '@angular/core';

import { AuthData }    from './models/auth-data';

@Injectable()
export class AuthService {

    constructor(private http: HttpClient) { }

    auth = (data: AuthData) => {

        var url = "https://.../login";
        var payload = data;
        var headers = new HttpHeaders().set('Content-Type', 'application/json; charset=utf-8');
        var options =  {
            headers: headers
        };

        this.http.post(url, payload, options).subscribe();
    }
}

出于某种原因,Content-Type标题似乎不在我的请求中。

enter image description here

为什么是这样?

angular angular-httpclient
6个回答
4
投票

如果我看得正确,你向我们展示的是OPTIONS预检请求(CORS),而不是实际的POST请求。

应该有2个'有问题的请求'。一个http的方法应该是OPTIONS(你在这里展示的那个,它叫做preflight cors请求)和一个实际的POST(如果服务器允许它为你的客户端)。如果host不同于我认为的locahost:4200,则必须在服务器上为localhost:4200客户端启用cors请求。


6
投票

因为HttpHeaders是不可变的,我们必须分配它

const _headers = new HttpHeaders();
const headers = _headers.append('Content-Type', 'application/json')
                        .append('...', '...')
                        .append('...', '...');

6
投票

这对我有用。而不是追加。

let headers = new HttpHeaders({
'Content-Type': 'application/json'
});

-1
投票

试试这个:

var headers = new HttpHeaders();
headers.append('Content-Type', 'application/json');

-1
投票

试试这个也有同样的问题;)

ng build --production -host=yourDomain.com

问题是该项目是在localhost上构建的,使用节点,并保留这些默认的主机和端口信息,您可以在构建项目时更改它


-3
投票
const httpOptions = {
        headers: new HttpHeaders({
          'Content-Type':  'application/json',
          'id':id
        })
      };          

注意:请将'id'作为'String'发送,请注意以下修改

 const httpOptions = {
        headers: new HttpHeaders({
          'Content-Type':  'application/json',
          'id':id+''
        })
      }; 

它工作正常。

© www.soinside.com 2019 - 2024. All rights reserved.