我想獲取網站「http://facebook.com」的標題。這應該是一個302永久移動,我想調用響應頭中提供的引用鏈接。node.js - XMLHttpRequest,獲取標題信息
這裏是我的代碼:
var req = new XMLHttpRequest();
req.open('GET', "http://facebook.com/", false);
req.send(null);
var headers = req.getAllResponseHeaders().toLowerCase();
console.log(headers);
這裏是錯誤消息:
/home/node_modules/xmlhttprequest/lib/XMLHttpRequest.js:230
for (var i in response.headers) {
TypeError: Cannot read property 'headers' of undefined
at getAllResponseHeaders (/home/node_modules/xmlhttprequest/lib/XMLHttpRequest.js:230:27)
at Object.<anonymous> (/home/browse/init.js:67:19)
at Module._compile (module.js:456:26)
at Object.Module._extensions..js (module.js:474:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
at Function.Module.runMain (module.js:497:10)
at startup (node.js:119:16)
at node.js:906:3
我希望你能幫助我。
你是否真的需要'' XMLHttpRequest''或者只是[http.request](http://nodejs.org/api/http.html#http_http_request_options_callback)或者可能是[mikeal/request](https://github.com/mikeal/request)? – sarbbottam 2014-09-03 19:23:13
我會用'http.request'來試試 – jan 2014-09-03 19:24:04