How to read/save HTTP Post response (HTML format) in angular 4

368 views Asked by At

I am trying to read the HTTP Post response in Angular 4. But I cannot able to do. Because the response in HTML format. I searched many sites but I could not found any solution for that.

I can able read JSON format but HTML I can't able to do.

Please give me the solution for this.

Thanks

1

There are 1 answers

2
Akirus On

You need to add responseType text in the options object

const options = {responseType: 'text'}
this.http.post(url, body, options);