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. Understanding callbacks in javascript
  2. Error handling in promises interview question
  3. simple css reset
  4. Why use javascript strict mode
  5. A simple requestAnimationFrame example visually explained