Как добавить пользовательские заголовки в HTTP-запрос Angular5? - PullRequest
0 голосов
/ 01 июня 2018

Как добавить пользовательский заголовок в запрос http с помощью angular5?Я пробовал что-то вроде этого.

        import {Headers} from 'angular2/http';
        var headers = new Headers();
        headers.append(headerName, value);

        // HTTP POST using these headers
         this.http.post(url, data, {
         headers: headers
          })
      // do something with the response

1 Ответ

0 голосов
/ 01 июня 2018

Ниже приведен пример настраиваемого заголовка:

import { Injectable }    from '@angular/core';
import { Http, Headers, Response } from '@angular/http';


@Injectable()
export class AbcService {

  constructor(private http: Http) { }

  search = (query) => {
    let headers = new Headers();
    headers.append('Api-User-Agent', 'Example/1.0');
    let apiUrl: string = 'https://en.wikipedia.org/w/api.phpgsrsearch='+query;

return this.http
        .get(apiUrl, headers)
        .map(response => response.json());
  }
}
...