我正在尝试使用 Node.js 和 Cheerio 解析 HTML 表并得到一些结果,但不幸的是我得到的数据太多,不知道如何进一步解析它以仅获取我需要的数据。
这是我到目前为止的一小部分代码..
var request = require("request");
var cheerio = require("cheerio");
request('http://www.myURL.com', function(error, response, body) {
var $ = cheerio.load(body);
$('td').each(function() {
console.log($(this).text());
});
});
使用 Chrome 插件来定位选择器,我发现我需要“.clickableRow td”,但我尝试插入的所有方法似乎都不起作用。
为了更清楚一点,html 源代码如下所示 -
<html>
<body>
<form>
<table>
<tbody>
<td>
<table class="standardTable">
<tbody>
<tr class="clickableRow">
<td>first thing I want</td>
<td>second thing I want</td>
<td>third thing I want</td>
<td>fourth thing I want</td>
那有意义吗?我想要的项目在 HTML 中非常深入,我不知道如何达到那个水平。任何帮助将不胜感激!谢谢!