HttpClient - Headers

28 Marzo 2018 »
angular

Poner headers con el uso de HttpClient se realiza de la siguiente manera:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { Injectable } from '@angular/core';
import { HttpClient, HttpHeaders } from '@angular/common/http';

@Injectable()
export class CabeceraService {

  private headers: HttpHeaders;

  constructor(private http: HttpClient) {
    
   this.headers = new HttpHeaders({
      'Content-Type': 'application/json',
    });

  }

  solicitud(): Observable<any> {
    return this.http.get('http://localhost/getDatos', {headers: this.headers});
  }
}