我想从html中提取具有“微内容”类属性的图像,就像我一样 ...
我想提取这个类为class =“microctent”的图像
我写了这段代码,但这不起作用。
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 imgArray = [];
$('img.microconent').each(function(){
var temp = $(this).attr("src");
imgArray.push(temp);
var downloadImage = function (temp) {
http.get(temp, function (res) {
var imagedata = ''
res.setEncoding('binary')
res.on('data', function(chunk){
imagedata += chunk;
});
res.on('end', function(){
var imgArr = temp.split("/");
var Name = util.id();
imgName = imgArr[imgArr.length-1];
imgName = imgName.split(".");
imgName = imgName[imgName.length-1];
imgName = Name + "." +imgName;
fs.writeFile(__dirname + '/img/' + Name + ".png" , imagedata, 'binary', function(err){
if (err) throw err;
console.log('image saved')
});
});
});
};
downloadImage(temp);
console.log("image is " + imgArray);
});
console.log('Crawling "%s" | %s',title,this.url);
任何帮助都会很明显。
答案 0 :(得分:0)
''之后不要留空间。'
你应该写它,
`$('img .microcontent')` not like `$('img . microcontent`')