angular 6 or 7: How to import RequestOptions and ResponseContentType in '@angular/common/http'

Amol B Lande picture Amol B Lande · Nov 2, 2018 · Viewed 30.3k times · Source

I have migrated angular 4 code to angular 6 and I want to know how to import below code in angular 6 or 7?

import { RequestOptions, ResponseContentType } from '@angular/common/http';

Answer

Sachin Shah picture Sachin Shah · Nov 2, 2018

Pass this way ...

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

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

 this.http.post(URL, param, options)
    .subscribe(data => {
         console.log(data);
 });



 // For pass blob in API 

 return this.http.get(url, { headers: new HttpHeaders({
   'Authorization': '{data}',
   'Content-Type': 'application/json',
 }), responseType: 'blob'}).pipe (
 tap (
     // Log the result or error
     data => console.log('You received data'),
     error => console.log(error)
  )
);