我正在尝试在节点上为我的货币兑换图构建一个抓取引擎,目前我正在使用 request+cheerio,但由于某些银行网站在 html 中不使用 id/class'es,我的代码有时看起来像:
var eurcur = parsedHTML('p','body')
.eq(1).children('table')
.children('tr').eq(2)
.children('td')
.children('table')
.children('tr').eq(10)
.children('td').eq(4).text()
还有什么我可以用的吗?