我想制作网络抓取工具,从任何给定的网址中提取标题,描述,关键字和图像。提取后我想保存在数据库中...我的代码不适用于图像...任何帮助将不胜感激
var $ = cheerio.load(html);
var title = $('head title').text();
var keywords = $('head meta[name=keywords]').attr('content');
var desc = $('head meta[name=description]').attr('content');
var links = $('a');
var img= $('img').attr('content')
console.log('Crawling "%s" | %s',title,this.url);
async.map(links.map(function(){
var href = $(this).attr('href');
if(href && href != self._url && !(/^#(\w)+/.test(href)) && !util.imageRegexp.test(href)){
if(util.isExternal(href)){
return 'INSERT INTO `queue` SET `id` = \''+util.id()+'\', `url` = '+self.conn.escape(href)+', `from` = '+self.conn.escape(from);
console.log("self.conn.escape" + self.conn.escape)
}
else {
return 'INSERT INTO `queue` SET `id` = \''+util.id()+'\', `url` = '+self.conn.escape(util.resolveRelativeURL(href,self._url))+', `from` = '+self.conn.escape(from);
}
}
return false;
}).filter(function(el){
return !!el;
})
,this.conn.query.bind(this.conn),function(e,result){
if(e){
console.log('Error writing queue.');
console.log(e);
}
});
this.conn.query('INSERT INTO `websites` SET ?',{
id:util.id(),
url:this.url,
from:from,
title:title,
keywords:keywords || '',
img:img || '',
desc:desc || ''
}
答案 0 :(得分:0)
如果要$('img').attr('content')
,您希望将图像本身作为文件下载,那么这将不起作用,因为图像数据本身是与HTML无关的资源,它只是识别图像的URL。因此,您需要通过其src
属性值对图像发出HTTP GET请求,并将其另存为文件。 Node的核心http客户端库以及request
或superagent
等npm模块都可以使用。