gpt4 book ai didi

javascript - Cheerio 直接子选择器

转载 作者:行者123 更新时间:2023-11-30 11:53:08 24 4
gpt4 key购买 nike

嘿,伙计们,女士们,首先这是我在 stackoverflow 中的第一个问题,所以不要对我太苛刻......但是 w/e :P。我有个问题..我对网络抓取完全陌生,目前我遇到无法选择正确元素的问题。我的代码如下所示:

var express = require('express');
var path = require('path');
var request = require('request');
var cheerio = require('cheerio');
var fs = require('fs');

var app = express();
var port = 8000;

var url = "http://www.finanzparasiten.de/html/links/awd.html";

request(url, function (err, resp, body) {
if(!err) {
var $ = cheerio.load(body)

var test = $('body table table table > tbody > tr > td > p');
console.log(test.html())
test.each(function (ii, asdf) {
var rr = $(asdf).find("table").find("tr").first().find('td:nth-child(2)').text();
console.log(asdf);
})
} else {
console.log("we encountered an error: " + err);
}
});

app.listen(port);
console.log('server is listening on ' + port);

它一直为变量 test 记录 NULL。似乎 cheerio 的 > 选择器有问题。使用 jQuery,此选择将​​按预期工作。

感谢@logol 的 anwser,我可以解决第一个问题,但现在我面临的问题是我必须在 body 之后选择直接子节点,它似乎作为 tbody 出现错误。任何人有解决方法吗?

最佳答案

原文:

据我所知(当我上次使用 cheerio 时)tbody 在 cheerio 中无法识别,只需保留它并改用它:

表 > tr > td

PS: thead 正在工作

更新:

它似乎有时甚至与 tbody 一起工作,在 REPL 中试试这个

const cheerio = require('cheerio');
const html = '\
<!DOCTYPE html>\
<html>\
<head>\
<title>Cheerio Test</title>\
</head>\
<body>\
<div id="#1">\
<table>\
<thead>\
<tr>\
<th>Month</th>\
<th>Savings</th>\
</tr>\
</thead>\
<tfoot>\
<tr>\
<td>Sum</td>\
<td>180</td>\
</tr>\
</tfoot>\
<tbody>\
<tr>\
<td>January</td>\
<td>100</td>\
</tr>\
<tr>\
<td>February</td>\
<td>80</td>\
</tr>\
</tbody>\
</table>\
</div>\
</body>\
</html>';
const dom = cheerio.load(html);

// not working:
let tds1 = dom('div#1 > table > tbody > tr > td').map(function () {
return dom(this).text().trim();
}).get();

// working:
let tds2 = dom('table > tbody > tr > td').map(function () {
return dom(this).text().trim();
}).get();

// not working:
let tds3 = dom('div#1 > table > tr > td').map(function () {
return dom(this).text().trim();
}).get();

console.log(tds1);
console.log(tds2);
console.log(tds3);

关于javascript - Cheerio 直接子选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38880564/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com