gpt4 book ai didi

javascript - .find 不是 cheerio 对象上的函数

转载 作者:搜寻专家 更新时间:2023-11-01 00:29:06 25 4
gpt4 key购买 nike

  let playersCell = `
<td class="foo" colspan="2">
<a href="example.com">
<span class="bold">John Beluga</span>
- Sarah Jay.
</a>
</td>
`

let players = cheerio.load(playersCell)
players.find('a').html()

我尝试将一个 html 字符串加载到 cheerio.js 中并找到一个 a 标签,但我得到了

[TypeError: players.find is not a function]

Console.log 显示玩家

enter image description here

最佳答案

我得到了 .find is not a function,当我在控制台中查看我试图查找的对象时,它说它的类型是 tag。我意识到我需要再次包装对象。

let results = $('.your .query')
results.each((i, r) => {
$(r).find('.your .next .query')
})

关于javascript - .find 不是 cheerio 对象上的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44832165/

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