您好正在测试新的 x 射线网络抓取,按照列出的爬取到另一个网站的教程,不返回任何东西 github x 射线
var Xray = require('x-ray');
var x = Xray();
x('http://google.com', {
main: 'title',
image: x('#gbar a@href', 'title'), // follow link to google images
})(function(err, obj) {
/*
{
main: 'Google',
image: 'Google Images'
}
*/
})
不起作用,除了这是我的代码,对于相同的逻辑
var html='http://www.myjoyonline.com/news.php';
x(html,'ul.opinion-listings li' ,[{
title : '.head .title a',
desc : '.info',
date : '.head',
img :'.image-inner a img@src',
url :'.head .title a@href',
fullStory : x('.head .title a@href', 'title'),
}])(function(err, obj) {
console.log(obj);
});