SuperAgent - 仅获取标题

时间:2018-05-09 11:18:27

标签: http get http-headers superagent

我正在使用Node的superagent

对于这样的简单请求,我如何才能获取/请求页面的标题,而不是完整内容?

request.get('https://google.com') .then((res) => {console.log(res.headers);}) .catch(err=> console.log(err.status));

我试图在文档和谷歌中找到,但无法找到任何内容。

1 个答案:

答案 0 :(得分:1)

感谢@CBroe指点我the right direction

面向未来的访客 ...

您需要的是用GET请求替换HEAD请求 例如,就我而言,它将是:

const request = require('superagent');

request
  .head('https://google.com')
  .then((res) => {console.log(res.headers);})
  .catch(err=> console.log(err.status));