我尝试了这个,但是我收到了错误。
http.get({ url: 'http://www.panda.tv/ajax_chatinfo?roomid=89757',
agent: 'Mozilla/5.0' }, function(res) {
res.on('data', function(chunk) {
doSomething();
});
});
我阅读了API文档,但我没有找到任何关于如何创建的内容。
当我运行代码时,出现以下错误:
_http_client.js:158
self.agent.addRequest(self, options);
^
TypeError: self.agent.addRequest is not a function
at new ClientRequest (_http_client.js:158:16)
at Object.exports.request (http.js:31:10)
at Object.exports.get (http.js:35:21)
at getChatInfo (/home/zeek/Documents/pandatv/node/app.js:5:10)
at Object.<anonymous> (/home/zeek/Documents/pandatv/node/app.js:153:1)
at Module._compile (module.js:541:32)
at Object.Module._extensions..js (module.js:550:10)
at Module.load (module.js:458:32)
at tryModuleLoad (module.js:417:12)
at Function.Module._load (module.js:409:3)
答案 0 :(得分:12)
const options = {
hostname: 'www.panda.tv',
path: 'ajax_chatinfo?roomid=89757',
headers: { 'User-Agent': 'Mozilla/5.0' }
};
http.get(options, function(res) {
res.on('data', function(chunk) { console.log(chunk) });
});
考虑下一个npm模块request或superagent,它们将帮助您处理http请求。如果您需要示例,请发表评论,但我相信您会从文档中获取。 GL。