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';
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)
)
);