我正在使用Node的superagent。
对于这样的简单请求,我如何才能获取/请求页面的标题,而不是完整内容?
request.get('https://google.com')
.then((res) => {console.log(res.headers);})
.catch(err=> console.log(err.status));
我试图在文档和谷歌中找到,但无法找到任何内容。
答案 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));