【uniapp小程序】使用cheerio去除字符串中的HTML标签并获取纯文本内容

【uniapp小程序】使用cheerio去除字符串中的HTML标签并获取纯文本内容

参考资料

【博主:AIpoem】uniapp小程序 使用cheerio处理网络请求拿到的dom数据
cheerio文档:https://github.com/cheeriojs/cheerio/wiki/Chinese-README

安装

powershell 复制代码
npm i cheerio [email protected]

引入

js 复制代码
import * as cheerio from 'cheerio';

使用

js 复制代码
const $ = cheerio.load('<div><h1 class="content">hello world!</h1><p class="text">This is a <strong>test</strong> paragraph one.</p><p>This is a <strong>test</strong> paragraph two.</p></div>');
const content = $('body').text();
console.log(content); // hello world!This is a test paragraph one.This is a test paragraph two.
const content2 = $('h1').text();
console.log(content2); // hello world!
const content3 = $('p').text();
console.log(content3); // This is a test paragraph one.This is a test paragraph two.
const content4 = $('p.text').text();
console.log(content4); // This is a test paragraph one.
相关推荐
我命由我123451 小时前
微信小程序项目问题:tabBar.borderStyle 字段需为 black,white
前端·javascript·微信小程序·小程序·前端框架·html·html5
悠悠~飘2 小时前
将pdf或者word转换成base64格式
前端·javascript·html
卑微小文2 小时前
住宅代理IP与机房代理IP:国内业务需求的适配选择
后端·http·html
前端Hardy3 小时前
HTML&CSS:必学!用骨架屏卡片布局,让信息页“高级感爆棚”
javascript·css·html
前端Hardy3 小时前
HTML&CSS:纯CSS实现3D立方体二维码旋转特效
javascript·css·html
Ama_tor3 小时前
网页制作16-Javascipt时间特效の设置D-DAY倒计时
前端·javascript·html
2401_872487884 小时前
网络安全之前端学习(HTML篇)
学习·html
mon_star°5 小时前
搭建刷题专业版小程序系统
微信小程序·小程序·微信公众平台
知识分享小能手5 小时前
CSS3学习教程,从入门到精通,CSS3 文字样式语法知识点及案例代码(7)
前端·javascript·学习·html·css3·html5·前端开发工程师
齐尹秦5 小时前
HTML 标题
前端·html