gpt4 book ai didi

cheerio - 只获取当前节点的文本

转载 作者:行者123 更新时间:2023-12-02 18:39:25 29 4
gpt4 key购买 nike

在 Cheerio 中,如何仅获取当前节点的文本?

var cheerio = require('cheerio')

const htmlString = '<div>hello<span>world</span></div>'

$ = cheerio.load(htmlString, { ignoreWhitespace: true })

console.log($('div').text()) //helloworld
console.log($('span').text()) //world

如何才能得到hello

最佳答案

你可以这样做:

console.log($('div').contents().first().text()) # hello

关于cheerio - 只获取当前节点的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42235516/

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