Be the first user to complete this post

  • 0
Add to List

Parse html response with fetch API

We will learn how to read the html response returned from REST API end point which was called using the new fetch API.

The Fetch API provides an interface for fetching resources (including across the network).
If you have a REST API end point, which returns you the html response, then you can use the response.text() method to parse the html as shown below.
return fetch(url).then(function(res) {
    return res.text();
}).then(function(html) {
    console.log(`html = ${html}`);
});
response.text() takes a response stream and reads it to completion. It returns a promise that resolves with a text. Further reading :



Also Read:

  1. pseudo elements vs pseudo classes
  2. css: margin does not work
  3. gzip compress and cache api response in express
  4. nodejs: generate uuid / guid
  5. css - vertically align text