Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
4.3k views
in Technique[技术] by (71.8m points)

node.js - How to print HTML Response of node js request response

I am getting a response of node js request having options like URL methods and cookie but I am getting a response as an HTML with some script. While consoling the response, I am getting some encoded text and having buffer data. How I can print the response of HTML as it is i.e HTML in my response to the HTTP request. ..................................... const https = require('https'); SearchById(Id) {

const options = {}

  const req = https.request(options, function(res) {
      try{
        if(res)
        {
            console.log("response",res)// here i am getting json data
            res.on('data', d => {
              console.log("SearchById ",d);  // here i am getting  encoded text with buffer data
            })
        }
        else{
          console.log(`product with ${id} is not there`)
        }
      }
      catch(err)
      {
        console.log(err);
      }
  })

}

SearchById(777474)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...